blob: 1f1e5ea39f65bcc29516768f905a65779ba36e7b (
plain)
1
2
3
4
5
6
7
8
|
from django.conf.urls.defaults import *
from views import get, get_current, nop_form
urlpatterns = patterns('',
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),
)
|