Mercurial > public > bravenewsurf
view bns_website/reviews/models.py @ 27:a5e8741452a3
Add path to Django in WSGI file.
Use Django's simplesjon module as it will either import the Python system one if it exists, or use the one provided with Django as a fallback. This is needed for the production server, which is running Python 2.5.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 01 Nov 2011 20:15:21 -0500 |
parents | 71f2beb03789 |
children | 20dc7be59c85 |
line wrap: on
line source
""" Models for the reviews application. """ from django.db import models class Review(models.Model): """ This model represents all the info we store about each review. """ date = models.DateField(auto_now_add=True) title = models.CharField(max_length=200, blank=True) 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" def __unicode__(self): return self.reviewer