Mercurial > public > sg101
annotate gpp/core/admin.py @ 235:d302c498560e
Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Aug 2010 04:01:58 +0000 |
parents | 48b221d304c6 |
children |
rev | line source |
---|---|
bgneal@42 | 1 from django.contrib import admin |
bgneal@42 | 2 from django.contrib.flatpages.models import FlatPage |
bgneal@42 | 3 from django.contrib.flatpages.admin import FlatPageAdmin as FlatPageAdminOld |
bgneal@42 | 4 from django.conf import settings |
bgneal@42 | 5 |
bgneal@42 | 6 class FlatPageAdmin(FlatPageAdminOld): |
bgneal@42 | 7 class Media: |
bgneal@42 | 8 js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] |
bgneal@42 | 9 |
bgneal@42 | 10 # We have to unregister it, and then reregister |
bgneal@42 | 11 admin.site.unregister(FlatPage) |
bgneal@42 | 12 admin.site.register(FlatPage, FlatPageAdmin) |