X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sandbox%2Furls.py;h=94e9463470ec398e8269c03ebebe7ff0bee4f2d6;hb=36f0a2f013dc861c84f2f2781ccffa05228759a7;hp=e5b210c9881dd7ddb8bb17b12577e57554635139;hpb=5de3330b8219f03bc53d9bbace764ee3912e6017;p=myslice.git diff --git a/sandbox/urls.py b/sandbox/urls.py index e5b210c9..94e94634 100644 --- a/sandbox/urls.py +++ b/sandbox/urls.py @@ -24,7 +24,9 @@ from django.views.generic.base import TemplateView from django.conf.urls import patterns, include, url from sandbox.views import MyPluginView +from sandbox.views import MadDashView urlpatterns = patterns('', - url(r'^myplugin/?$', MyPluginView.as_view(), name='myplugin') + url(r'^myplugin/?$', MyPluginView.as_view(), name='myplugin'), + url(r'^maddash/?$', MadDashView.as_view(), name='maddash') )