10 lines
206 B
Python
10 lines
206 B
Python
from django.contrib import admin
|
|
|
|
from .models import UserProfile
|
|
|
|
|
|
class UserProfileAdmin(admin.ModelAdmin):
|
|
list_display = ("user", "show_mature")
|
|
|
|
|
|
admin.site.register(UserProfile, UserProfileAdmin)
|