annotate gpp/potd/admin.py @ 318:c550933ff5b6

Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Feb 2011 21:46:52 +0000
parents ded03f2513e9
children 3c951521e0ec
rev   line source
gremmie@1 1 """
gremmie@1 2 This file contains the admin definitions for the POTD application.
gremmie@1 3 """
bgneal@267 4 from django.contrib import admin
bgneal@267 5 from django.conf import settings
gremmie@1 6
gremmie@1 7 from potd.models import Photo
gremmie@1 8 from potd.models import Current
gremmie@1 9 from potd.models import Sequence
gremmie@1 10
bgneal@267 11
gremmie@1 12 class PhotoAdmin(admin.ModelAdmin):
gremmie@1 13 exclude = ('thumb', )
gremmie@1 14 raw_id_fields = ('user', )
gremmie@1 15
bgneal@267 16 class Media:
bgneal@267 17 js = settings.GPP_THIRD_PARTY_JS['tiny_mce']
bgneal@267 18
gremmie@1 19 class CurrentAdmin(admin.ModelAdmin):
gremmie@1 20 raw_id_fields = ('potd', )
gremmie@1 21
gremmie@1 22 admin.site.register(Photo, PhotoAdmin)
gremmie@1 23 admin.site.register(Current, CurrentAdmin)
gremmie@1 24 admin.site.register(Sequence)