Only allow users to add NPC or Player characters.
[matthijs/projects/xerxes.git] / base / admin.py
1 from django.contrib import admin
2 from xerxes.base.models import UserProfile
3
4 class UserProfileAdmin(admin.ModelAdmin):
5     pass
6
7 admin.site.register(UserProfile, UserProfileAdmin)