Skip to content
Snippets Groups Projects
Commit 3a049a53 authored by Johannes Raggam's avatar Johannes Raggam
Browse files

different url schema for get_current, include nop_form

parent 8f9b06d1
No related branches found
No related tags found
No related merge requests found
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),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment