view bns_website/bands/admin.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 2de51cc51d3a
line wrap: on
line source
"""
Automatic admin definitions for the models in the bands application.

"""
from django.contrib import admin
from bands.models import Band


class BandAdmin(admin.ModelAdmin):
    list_display = ['name', 'url', 'order']
    list_editable = ['order']


admin.site.register(Band, BandAdmin)