Mercurial > public > sg101
view gpp/core/admin.py @ 243:7ddd60164245
For #93: remove the page number from the URL. This commit fixes the shoutbox and member list. It also contains a change to downloads to add pagination to the new, popular, and highest rated views.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 16 Sep 2010 01:06:43 +0000 |
parents | 48b221d304c6 |
children |
line wrap: on
line source
from django.contrib import admin from django.contrib.flatpages.models import FlatPage from django.contrib.flatpages.admin import FlatPageAdmin as FlatPageAdminOld from django.conf import settings class FlatPageAdmin(FlatPageAdminOld): class Media: js = settings.GPP_THIRD_PARTY_JS['tiny_mce'] # We have to unregister it, and then reregister admin.site.unregister(FlatPage) admin.site.register(FlatPage, FlatPageAdmin)