I use extended user profile (class name: UserProfile). I made an app for this, named account. In settings I have set:

AUTH_PROFILE_MODULE = 'account.UserProfile'

But I made another model in that app named RestrictedUsername. I want to put there usernames, that will be reserved and not available in register process. I don't know why, but it doesn't appear in admin panel. I registered it:

from django.contrib import admin
from apps.account.models import RestrictedUsername

class RestrictedUsernameAdmin(admin.ModelAdmin):
    list_display = ('username',)
    search_fields = ('username',)

admin.site.register(RestrictedUsername, RestrictedUsernameAdmin)

Any ideas how to make it work?

link|improve this question

53% accept rate
Is your account app listed in INSTALLED_APPS ? – armonge Jan 17 at 1:39
Did you also run python manage.py syncdb? – Nic Young Jan 17 at 3:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.