summaryrefslogtreecommitdiffstats
path: root/dashboard/src/dashboard/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/dashboard/urls.py')
-rw-r--r--dashboard/src/dashboard/urls.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/dashboard/src/dashboard/urls.py b/dashboard/src/dashboard/urls.py
index 0d7ee87..571a987 100644
--- a/dashboard/src/dashboard/urls.py
+++ b/dashboard/src/dashboard/urls.py
@@ -25,9 +25,14 @@ Including another URLconf
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
from django.conf.urls import url
-from dashboard.views import *
+from dashboard.views import (
+ landing_view,
+ lab_list_view,
+ lab_detail_view,
+ host_profile_detail_view
+)
-app_name="dashboard"
+app_name = "dashboard"
urlpatterns = [
url(r'^$', landing_view, name='index'),
url(r'^lab/$', lab_list_view, name='all_labs'),