view bns_website/bands/models.py @ 21:687af3cb0525

I change the news model to have reverse chronological ordering. I removed a rogue </div> tab from the news_list.html template.
author Bob Mourlam <bob.mourlam@gmail.com>
date Mon, 31 Oct 2011 20:55:02 -0500
parents 48ff23eab86a
children c3b4884fe4ea
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()
    order = models.IntegerField(default=0)

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

    def __unicode__(self):
        return self.name