diff gpp/bio/admin.py @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 7ea842744a57
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/bio/admin.py	Mon Apr 06 02:43:12 2009 +0000
@@ -0,0 +1,15 @@
+"""
+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