Mercurial > public > bravenewsurf
view bns_website/bands/admin.py @ 16:71f2beb03789
First stab at the review app.
author | Chris Ridgway <ckridgway@gmail.com> |
---|---|
date | Sun, 30 Oct 2011 23:07:05 -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)