Mercurial > public > bravenewsurf
annotate bns_website/bands/models.py @ 17:5348d2235497
Moved the news admin to its own file and removed it from Brian's band admin. I'm an idiot.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Mon, 31 Oct 2011 20:30:37 -0500 |
parents | 48ff23eab86a |
children | c3b4884fe4ea |
rev | line source |
---|---|
bgneal@6 | 1 """ |
bgneal@6 | 2 Models for the bands application. |
bgneal@6 | 3 |
bgneal@6 | 4 """ |
bgneal@6 | 5 from django.db import models |
bgneal@6 | 6 |
bgneal@6 | 7 |
bgneal@6 | 8 class Band(models.Model): |
bgneal@6 | 9 """ |
bgneal@6 | 10 This model represents all the info we store about each band. |
bgneal@6 | 11 |
bgneal@6 | 12 """ |
bgneal@6 | 13 name = models.CharField(max_length=128) |
bgneal@6 | 14 url = models.URLField(verify_exists=False, max_length=200) |
bgneal@6 | 15 notes = models.TextField() |
bgneal@6 | 16 order = models.IntegerField(default=0) |
bgneal@6 | 17 |
bgneal@6 | 18 class Meta: |
bgneal@6 | 19 ordering = ['order', 'name'] |
bgneal@6 | 20 |
bgneal@6 | 21 def __unicode__(self): |
bgneal@6 | 22 return self.name |