mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 22:33:54 +01:00
6 lines
145 B
Python
6 lines
145 B
Python
from django.contrib import admin
|
|
from django.contrib.auth.admin import UserAdmin
|
|
|
|
from .models import User
|
|
|
|
admin.site.register(User, UserAdmin)
|