add nick
[laas.git] / src / account / admin.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt and others.
3 # Copyright (c) 2018 Parker Berberian, Sawyer Bergeron, and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11
12 from django.contrib import admin
13
14 from account.models import UserProfile, Lab, VlanManager, PublicNetwork
15
16 admin.site.register(UserProfile)
17 admin.site.register(Lab)
18 admin.site.register(VlanManager)
19 admin.site.register(PublicNetwork)