blob: a4700cf9cfccfaabe91364e1e273972b0d40b222 (
plain)
1
2
3
4
5
6
7
|
from django.conf.urls.defaults import patterns, url
from views import get, get_current
urlpatterns = patterns('',
url(r'^$', 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),
)
|