Add: base user app for user specific settings
This commit is contained in:
parent
a119e041bf
commit
5de12311c4
4 changed files with 78 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from .models import UserProfile
|
||||
|
||||
# Register your models here.
|
||||
|
||||
class UserProfileAdmin(admin.ModelAdmin):
|
||||
list_display = ('user', 'show_mature')
|
||||
|
||||
|
||||
admin.site.register(UserProfile, UserProfileAdmin)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue