comparison bns_website/bands/models.py @ 6:48ff23eab86a

Enabled the admin. Created a "bands" app with a band model. Created a generic view to display the bands.
author Brian Neal <bgneal@gmail.com>
date Sat, 29 Oct 2011 17:11:58 -0500
parents
children c3b4884fe4ea
comparison
equal deleted inserted replaced
5:04991ccaf30c 6:48ff23eab86a
1 """
2 Models for the bands application.
3
4 """
5 from django.db import models
6
7
8 class Band(models.Model):
9 """
10 This model represents all the info we store about each band.
11
12 """
13 name = models.CharField(max_length=128)
14 url = models.URLField(verify_exists=False, max_length=200)
15 notes = models.TextField()
16 order = models.IntegerField(default=0)
17
18 class Meta:
19 ordering = ['order', 'name']
20
21 def __unicode__(self):
22 return self.name