diff --git a/nop/urls.py b/nop/urls.py index a4700cf9cfccfaabe91364e1e273972b0d40b222..0521a746d741c5af7424fde2d714b9cc54c968f7 100644 --- a/nop/urls.py +++ b/nop/urls.py @@ -1,7 +1,8 @@ from django.conf.urls.defaults import patterns, url -from views import get, get_current +from views import get, get_current, nop_form urlpatterns = patterns('', - url(r'^$', get_current), + url(r'^get_current/?$', get_current), url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<hour>\d{1,2})/(?P<minute>\d{1,2})/?$', get), + url(r'^$', nop_form), )