Mercurial > public > bravenewsurf
view bns_website/news/models.py @ 16:71f2beb03789
First stab at the review app.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Sun, 30 Oct 2011 23:07:05 -0500 |
parents | 2de51cc51d3a |
children | 687af3cb0525 |
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" def __unicode__(self): return self.title