Mercurial > public > bravenewsurf
view bns_website/bands/admin.py @ 19:ef4155f8c234
For issue #5, add an untested (!) WSGI script. I'll test & refine this later when the site gets deployed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 31 Oct 2011 20:46:03 -0500 |
parents | 2de51cc51d3a |
children | 5348d2235497 |
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 from news.models import News class BandAdmin(admin.ModelAdmin): list_display = ['name', 'url', 'order'] list_editable = ['order'] admin.site.register(Band, BandAdmin) admin.site.register(News)