trash-based urls are now prefixed in trash/ and moved in trash/urls.py
[myslice.git] / trash / urls.py
diff --git a/trash/urls.py b/trash/urls.py
new file mode 100644 (file)
index 0000000..0c344ed
--- /dev/null
@@ -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'),
+)