Mercurial > public > bravenewsurf
view bns_website/bands/admin.py @ 15:6b664ec90f2f
Merged Brian's changes with mine.
author | Bob Mourlam <bob.mourlam@gmail.com> |
---|---|
date | Sun, 30 Oct 2011 21:37:52 -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)