Mercurial > public > sg101
view gpp/bio/admin.py @ 58:02e5dfa830cc
#11 Update Blueprints to 0.9. Also update the conditional IE specific include of the ie.css file. Hopefully this will resolve some issues seen with IE8.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 24 Jun 2009 00:18:53 +0000 |
parents | dbd703f7d63a |
children | 7ea842744a57 |
line wrap: on
line source
""" This file contains the admin definitions for the bio application. """ from django.contrib import admin from bio.models import UserProfile class UserProfileAdmin(admin.ModelAdmin): search_fields = ('user__username', 'user__first_name', 'user__last_name', 'user__email') exclude = ('profile_html', 'signature_html') admin.site.register(UserProfile, UserProfileAdmin) # vim: ts=4 sw=4