X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Furls.py;h=c7135ec3a94329eb602a982207ca695c5bce321f;hb=a8a54f34297f76d9379070f0fd2c1bec9f761c47;hp=c5c270f9e8280bdcdb1792a443f272861eefc1bc;hpb=d7fd4a2f12d405812f6a0de5c1a3625d9affe701;p=myslice.git diff --git a/portal/urls.py b/portal/urls.py index c5c270f9..c7135ec3 100644 --- a/portal/urls.py +++ b/portal/urls.py @@ -20,10 +20,13 @@ # this program; see the file COPYING. If not, write to the Free Software # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -from django.conf.urls import patterns, include, url -from portal import views -from portal.views import DashboardView, PresViewView, PlatformsView, PlatformView, ValidatePendingView, AccountView # UserRegisterView, UserValidateView -from portal.util import TemplateView +from django.conf.urls import patterns, include, url +from portal import views +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 # DEPRECATED #named_register_forms = ( # DEPRECATED # ("step1", RegisterUserForm), @@ -45,9 +48,8 @@ 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/acc_process/?$', views.acc_process), + url(r'^account/account_process/?$', views.account_process), url(r'^register/?$', views.register_4m_f4f), #url(r'^reg_process/?$', views.reg_4m_f4f_process), url(r'^contact/?$', views.contact),