Mercurial > public > bravenewsurf
comparison bns_website/bands/models.py @ 56:8bda0ec405e4
Merged experimental band ui branch to default.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Mon, 14 Nov 2011 23:32:14 -0600 |
parents | c3b4884fe4ea |
children |
comparison
equal
deleted
inserted
replaced
54:f8b32ce38533 | 56:8bda0ec405e4 |
---|---|
11 | 11 |
12 """ | 12 """ |
13 name = models.CharField(max_length=128) | 13 name = models.CharField(max_length=128) |
14 url = models.URLField(verify_exists=False, max_length=200) | 14 url = models.URLField(verify_exists=False, max_length=200) |
15 notes = models.TextField() | 15 notes = models.TextField() |
16 asset_prefix = models.CharField(max_length=64, blank=True) | |
16 order = models.IntegerField(default=0) | 17 order = models.IntegerField(default=0) |
17 | 18 |
18 class Meta: | 19 class Meta: |
19 ordering = ['order', 'name'] | 20 ordering = ['order', 'name'] |
20 | 21 |