X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=trash%2Furls.py;fp=trash%2Furls.py;h=0c344eddcf0e92eeb1fa21457ac8346d5982e81a;hb=13d84b91e3804fc228f51874896c86d8c6aa02f1;hp=0000000000000000000000000000000000000000;hpb=e11594d82379b519df0968cc3c6a21628b270b27;p=myslice.git diff --git a/trash/urls.py b/trash/urls.py new file mode 100644 index 00000000..0c344edd --- /dev/null +++ b/trash/urls.py @@ -0,0 +1,8 @@ +from django.conf.urls import patterns, include, url + +urlpatterns = patterns('', + url(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'), +)