view bns_website/reviews/models.py @ 79:548b9e61bd64

Updated bands.json to include "asset_prefix" tags for all the bands. Incorporated all the small images from Ferenc into the bands slideshow. Went through and crushed all the large images to fit within 800x600. Make sure to "manage.py loaddata bands.json" after picking this up.
author Chris Ridgway <ckridgway@gmail.com>
date Fri, 25 Nov 2011 16:54:59 -0600
parents 2598bc18b6fb
children
line wrap: on
line source
"""
Models for the reviews application.

"""
from django.db import models
from datetime import timedelta, datetime
from django.core.urlresolvers import reverse

class Review(models.Model):
    """
    This model represents all the info we store about each review.
    """
    date = models.DateTimeField(auto_now_add=True)
    title = models.CharField(max_length=200)
    reviewer = models.CharField(max_length=200)
    review_site = models.CharField(max_length=200, blank=True)
    review_url = models.URLField(verify_exists=False, max_length=256, blank=True)
    review = models.TextField()

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

    def __unicode__(self):
        return self.reviewer

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

    def get_absolute_url(self):
        return reverse('reviews') + '#review%d' % self.id