Mercurial > public > bravenewsurf
view bns_website/bands/models.py @ 28:20dc7be59c85
Addresses three items from #2, comment #2.
1. Made review title a mandatory field
3. Changed reviews display to use Bootstrap <blockquote> instead of <cite>
4. Ordering of reviews is now reverse chronological
see ticket #2
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Thu, 03 Nov 2011 23:00:34 -0500 |
parents | 48ff23eab86a |
children | c3b4884fe4ea |
line wrap: on
line source
""" Models for the bands application. """ from django.db import models class Band(models.Model): """ This model represents all the info we store about each band. """ name = models.CharField(max_length=128) url = models.URLField(verify_exists=False, max_length=200) notes = models.TextField() order = models.IntegerField(default=0) class Meta: ordering = ['order', 'name'] def __unicode__(self): return self.name