mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 11:13:23 +00:00
7 lines
87 B
Python
7 lines
87 B
Python
|
from django.contrib import admin
|
||
|
from .models import User
|
||
|
|
||
|
|
||
|
admin.site.register(User)
|
||
|
|