diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bns_website/bands/models.py	Sat Oct 29 17:11:58 2011 -0500
@@ -0,0 +1,22 @@
+"""
+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