X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Furls.py;h=a57c5fd128bb5e72f3b70c0ce71881a94a205808;hb=92422ec1289e2144667d593c0ad22c062f10008b;hp=f0e5ecd2d331f079ef26503ed105a64bc1f831ce;hpb=b5b1c487c354a2f66be7c4dc1f92ab514af76554;p=myslice.git diff --git a/portal/urls.py b/portal/urls.py index f0e5ecd2..a57c5fd1 100644 --- a/portal/urls.py +++ b/portal/urls.py @@ -23,6 +23,7 @@ from django.conf.urls import patterns, include, url from portal import views from portal.views import DashboardView, PresViewView +from portal.views import DashboardView, PresViewView, PlatformsView, PlatformView from portal.util import TemplateView # DEPRECATED #named_register_forms = ( @@ -44,6 +45,9 @@ urlpatterns = patterns('', url(r'^dashboard/?$', DashboardView.as_view(), name='dashboard'), #url(r'^my_account/?$', MyAccountView.as_view(), name='my_account'), url(r'^account/?$', views.my_account), + url(r'^platforms/?$', PlatformsView.as_view(), name='platforms'), + #url(r'^portal/platform/?$', PlatformView.platform_view(), name='platform'), + url(r'^platform/(?P[\w\.]+)/?$', PlatformView.as_view(), name='platform'), url(r'^acc_process/?$', views.acc_process), url(r'^register/?$', views.register_4m_f4f), #url(r'^reg_process/?$', views.reg_4m_f4f_process),