view bns_website/bands/models.py @ 87:fbeda0f5f3be

Fix for odd Webkit CSS issue when using jPlayer Blue Monday skin and our CSS. All instances of the Future Bugler font on the Listen page were jaggie and smaller than expected.
author Chris Ridgway <ckridgway@gmail.com>
date Sun, 27 Nov 2011 15:06:26 -0600
parents c3b4884fe4ea
children
line wrap: on
line source
"""
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()
    asset_prefix = models.CharField(max_length=64, blank=True)
    order = models.IntegerField(default=0)

    class Meta:
        ordering = ['order', 'name']

    def __unicode__(self):
        return self.name