view bns_website/news/models.py @ 21:687af3cb0525

I change the news model to have reverse chronological ordering. I removed a rogue </div> tab from the news_list.html template.
author Bob Mourlam <bob.mourlam@gmail.com>
date Mon, 31 Oct 2011 20:55:02 -0500
parents 2de51cc51d3a
children 1357c69e887d
line wrap: on
line source
from django.db import models

# Create your models here.
class News(models.Model):
    """
    This model represents all the info we store about each news entry.

    """
    title = models.CharField(max_length=128)
    date = models.DateTimeField()
    content = models.TextField()

    # User field?



    class Meta:
        verbose_name_plural="News"
        ordering = ['-date']

    def __unicode__(self):
        return self.title