Mercurial > public > sg101
view gpp/core/admin.py @ 327:a1bf6cf49720
Modified the implementation of the avatar tag to look for an attribute 'user_profile' on the user object. If present, this is assumed to be the profile. This improves the performance of the member list and some forum views.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 22 Feb 2011 02:11:26 +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)