view bns_website/news/models.py @ 40:5c0f9d80442e

I added a news template tag that's a blatant rip off of Chris' review one.
author Bob Mourlam <bob.mourlam@gmail.com>
date Sun, 06 Nov 2011 21:16:22 -0600
parents 353ca3874f43
children 9ce9f77d6cde
line wrap: on
line source
from django.db import models
from datetime import timedelta, datetime

# 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?


    def is_new(self):
        if datetime.now() - self.date <= timedelta(days=30):
            return True

        return False


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

    def __unicode__(self):
        return self.title