summaryrefslogtreecommitdiffstats
path: root/dashboard/src/account/admin.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-09 10:38:23 -0500
committerSawyer Bergeron <sbergeron@iol.unh.edu>2018-01-09 18:15:30 +0000
commit414f648fdc423931e9e89f8f799a75efb51c382d (patch)
tree3d00e9cefbdec5d9ed1a94aba17e166adefd5706 /dashboard/src/account/admin.py
parent830e8ee9ec76f426abc59e9b88ccb7ceeedcc8e8 (diff)
Create Lab Model
Jira: PHAROS-346 Allows admin to instantiate lab instances Change-Id: I67f8ceb3bc76d4cdd09fb6f3a0b715af312f6f83 Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'dashboard/src/account/admin.py')
-rw-r--r--dashboard/src/account/admin.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/dashboard/src/account/admin.py b/dashboard/src/account/admin.py
index 18b2e1a..6f77122 100644
--- a/dashboard/src/account/admin.py
+++ b/dashboard/src/account/admin.py
@@ -10,6 +10,7 @@
from django.contrib import admin
-from account.models import UserProfile
+from account.models import UserProfile, Lab
-admin.site.register(UserProfile) \ No newline at end of file
+admin.site.register(UserProfile)
+admin.site.register(Lab)