mirror of
https://github.com/jazzband/django-authority.git
synced 2026-03-16 22:20:28 +00:00
6 lines
158 B
Python
6 lines
158 B
Python
from django.contrib import admin
|
|
from django.contrib.auth.admin import UserAdmin
|
|
from example.users.models import User
|
|
|
|
|
|
admin.site.register(User, UserAdmin)
|