diff --git a/backend/api/user/admin.py b/backend/api/user/admin.py index c6fe108..3ec305a 100644 --- a/backend/api/user/admin.py +++ b/backend/api/user/admin.py @@ -1,2 +1,10 @@ from django.contrib import admin +from .models import UserProfile + + +class UserProfileAdmin(admin.ModelAdmin): + list_display = ("user", "show_mature") + + +admin.site.register(UserProfile, UserProfileAdmin)