view bns_website/bands/admin.py @ 55:c3b4884fe4ea bands-experimental-ui

Added some band images to the Bands page. Note, this requires you to "loaddata bands.json" to install asset information. Added a fancy box effect to the Band images (click to see larger image).
author Chris Ridgway <ckridgway@gmail.com>
date Mon, 14 Nov 2011 23:17:58 -0600
parents 5348d2235497
children
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)