From 02b8a108bb761cdb59ab7db29269a85c269a8c50 Mon Sep 17 00:00:00 2001 From: Loic Baron Date: Tue, 15 Jul 2014 19:17:35 +0200 Subject: [PATCH 1/1] Added terms in urls --- myslice/urls.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/myslice/urls.py b/myslice/urls.py index 68ec521a..32d343b8 100644 --- a/myslice/urls.py +++ b/myslice/urls.py @@ -16,7 +16,10 @@ import portal.platformsview import portal.dashboardview import portal.homeview import portal.newsview + from portal.registrationview import RegistrationView +from portal.termsview import TermsView + home_view=portal.homeview.HomeView.as_view() dashboard_view=portal.dashboardview.DashboardView.as_view() platforms_view=portal.platformsview.PlatformsView.as_view() @@ -96,6 +99,8 @@ urls = [ (r'^management/requests/?$', portal.managementtabrequests.ManagementRequestsView.as_view()), # url(r'^register/?$', RegistrationView.as_view(), name='registration'), + url(r'^terms/?$', TermsView.as_view(), name='terms'), + # url(r'^portal/', include('portal.urls')), # SLA -- 2.43.0