annotate gpp/potd/admin.py @ 88:3abf0b045749

Updates to base template. Added a link to forums. Display username in header if logged in.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Sep 2009 18:51:55 +0000
parents dbd703f7d63a
children ded03f2513e9
rev   line source
gremmie@1 1 """
gremmie@1 2 This file contains the admin definitions for the POTD application.
gremmie@1 3 """
gremmie@1 4
gremmie@1 5 from django.contrib import admin
gremmie@1 6 from potd.models import Photo
gremmie@1 7 from potd.models import Current
gremmie@1 8 from potd.models import Sequence
gremmie@1 9
gremmie@1 10 class PhotoAdmin(admin.ModelAdmin):
gremmie@1 11 exclude = ('thumb', )
gremmie@1 12 raw_id_fields = ('user', )
gremmie@1 13
gremmie@1 14 class CurrentAdmin(admin.ModelAdmin):
gremmie@1 15 raw_id_fields = ('potd', )
gremmie@1 16
gremmie@1 17 admin.site.register(Photo, PhotoAdmin)
gremmie@1 18 admin.site.register(Current, CurrentAdmin)
gremmie@1 19 admin.site.register(Sequence)