trash-based urls are now prefixed in trash/ and moved in trash/urls.py
[myslice.git] / trash / urls.py
1 from django.conf.urls           import patterns, include, url
2
3 urlpatterns = patterns('',
4                        url(r'^tab/?$',          'trash.sampleviews.tab_view'),
5                        (r'^scroll/?$',          'trash.sampleviews.scroll_view'),
6                        (r'^plugin/?$',          'trash.pluginview.test_plugin_view'),
7                        (r'^dashboard/?$',       'trash.dashboard.dashboard_view'),
8 )