view bns_website/news/models.py @ 23:1357c69e887d

- I added a little New badge for posts in the last 3 days. - I added a <div class=""> tag to the news posts to group them within the same Bootstrap CSS alert block. I'm not sure if it's a good idea or not, but it's kind of cool.
author Bob Mourlam <bob.mourlam@gmail.com>
date Mon, 31 Oct 2011 22:08:45 -0500
parents 687af3cb0525
children 353ca3874f43
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=3):
            return True

        return False


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

    def __unicode__(self):
        return self.title