X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Furls.py;h=c7135ec3a94329eb602a982207ca695c5bce321f;hb=a8a54f34297f76d9379070f0fd2c1bec9f761c47;hp=05c84888fccf77c9d8ac7a73fde959745a8e87d1;hpb=79491376e46b23c10fff08041d772a4eb6dbafe6;p=myslice.git diff --git a/portal/urls.py b/portal/urls.py index 05c84888..c7135ec3 100644 --- a/portal/urls.py +++ b/portal/urls.py @@ -22,7 +22,9 @@ from django.conf.urls import patterns, include, url from portal import views -from portal.views import PresViewView, PlatformsView, PlatformView, ValidatePendingView, AccountView # UserRegisterView, UserValidateView +from portal.views import PresViewView, ValidatePendingView, AccountView # UserRegisterView, UserValidateView +from portal.platformsview import PlatformsView +from portal.platformview import PlatformView from portal.dashboardview import DashboardView from portal.util import TemplateView @@ -46,7 +48,6 @@ urlpatterns = patterns('', #url(r'^my_account/?$', MyAccountView.as_view(), name='my_account'), url(r'^account/?$', AccountView.as_view(), name='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'^account/account_process/?$', views.account_process), url(r'^register/?$', views.register_4m_f4f),