X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Furls.py;h=3210957962b1eead072c97405372bb6efe47ad84;hb=c5795ba59e99c3a9b7481f4965814eca3e9a950d;hp=21bc8bd9c456368215f052554c8260a09e860662;hpb=e11594d82379b519df0968cc3c6a21628b270b27;p=myslice.git diff --git a/myslice/urls.py b/myslice/urls.py index 21bc8bd9..32109579 100644 --- a/myslice/urls.py +++ b/myslice/urls.py @@ -23,7 +23,7 @@ platforms_view=portal.platformsview.PlatformsView.as_view() # maybe platforms_view would be best on the longer run the_default_view=home_view # where to be redirected after login -the_after_login_view=home_view #dashboard_view +the_after_login_view=dashboard_view # where to redirect when login is required # might need another one ? the_login_view=home_view @@ -59,15 +59,10 @@ urlpatterns = patterns( # Portal url(r'^sample/', include('sample.urls')), # Debug - url(r'^debug/', include('debug_platform.urls')), - # Static files - (r'^static/(?P.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}), +# url(r'^debug/', include('debug_platform.urls')), # # various trash views - bound to go away # - (r'^tab/?$', 'trash.sampleviews.tab_view'), - (r'^scroll/?$', 'trash.sampleviews.scroll_view'), - (r'^plugin/?$', 'trash.pluginview.test_plugin_view'), - (r'^dashboard/?$', 'trash.dashboard.dashboard_view'), + url(r'^trash/', include('trash.urls')), )