7 lines
119 B
Python
7 lines
119 B
Python
from django.contrib import admin
|
|
|
|
from . import models
|
|
|
|
# Register your models here.
|
|
admin.register(models.CustomUser)
|