Registered CustomUser model in the admin panel.

Related issue: https://redmine.ungleich.ch/issues/2286
This commit is contained in:
Efstratios Goudelis 2016-05-16 16:48:26 +03:00
parent 8fc0ad20a6
commit 9658d6937a
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
from django.contrib import admin
from .models import CustomUser
# Register your models here.
admin.site.register(CustomUser)