Gallery-Archivist/archivist/apps/user/admin.py

12 lines
235 B
Python
Raw Normal View History

2023-10-21 13:18:07 +00:00
from django.contrib import admin
from .models import UserProfile
2023-10-21 13:18:07 +00:00
# Register your models here.
class UserProfileAdmin(admin.ModelAdmin):
list_display = ('user', 'show_mature')
admin.site.register(UserProfile, UserProfileAdmin)