Mercurial > public > sg101
annotate gpp/bio/admin.py @ 102:e67c4dd98db5
Forums: new topic form sprouts boolean fields for sticky and locking if the user has rights. Implemented the locked logic. Fixed a bug where topics where getting out of order (the view_count was bumping the update_date because of auto_now).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 16 Sep 2009 02:01:57 +0000 |
parents | dbd703f7d63a |
children | 7ea842744a57 |
rev | line source |
---|---|
gremmie@1 | 1 """ |
gremmie@1 | 2 This file contains the admin definitions for the bio application. |
gremmie@1 | 3 """ |
gremmie@1 | 4 |
gremmie@1 | 5 from django.contrib import admin |
gremmie@1 | 6 from bio.models import UserProfile |
gremmie@1 | 7 |
gremmie@1 | 8 class UserProfileAdmin(admin.ModelAdmin): |
gremmie@1 | 9 search_fields = ('user__username', 'user__first_name', 'user__last_name', 'user__email') |
gremmie@1 | 10 exclude = ('profile_html', 'signature_html') |
gremmie@1 | 11 |
gremmie@1 | 12 admin.site.register(UserProfile, UserProfileAdmin) |
gremmie@1 | 13 |
gremmie@1 | 14 |
gremmie@1 | 15 # vim: ts=4 sw=4 |