Merge pull request #71 from sgoudelis/bugfix/usermanage#2286

Registered CustomUser model in the admin panel.
This commit is contained in:
tmslav 2016-05-17 01:39:30 +02:00
commit 0162038c02
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)