add admin and a bit of documentation

This commit is contained in:
Jan Dittberner 2015-01-04 20:22:47 +01:00
parent 3eef84d373
commit 8697f84381
3 changed files with 34 additions and 1 deletions

View file

@ -1,3 +1,16 @@
"""
Admin functionality for the :py:mod:`userdbs.models` models.
"""
from __future__ import absolute_import
from django.contrib import admin
# Register your models here.
from .models import (
DatabaseUser,
UserDatabase,
)
admin.site.register(DatabaseUser)
admin.site.register(UserDatabase)