annotate bns_website/bands/models.py @ 68:1d50a0db4f21

- I moved the jplayer files to a jplayer dir under static/js. I thought about moving the flash file to another dir, but thought it'd be best to leave it with the rest of the jplayer files. - I removed some rogue colons in the music.html template.
author Bob Mourlam <bob.mourlam@gmail.com>
date Wed, 23 Nov 2011 09:16:47 -0600
parents c3b4884fe4ea
children
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()
ckridgway@55 16 asset_prefix = models.CharField(max_length=64, blank=True)
bgneal@6 17 order = models.IntegerField(default=0)
bgneal@6 18
bgneal@6 19 class Meta:
bgneal@6 20 ordering = ['order', 'name']
bgneal@6 21
bgneal@6 22 def __unicode__(self):
bgneal@6 23 return self.name