2015-04-06 15:43:36 +00:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
|
|
|
from lifting import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2015-04-06 17:51:33 +00:00
|
|
|
url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/$', views.month_lifts,
|
|
|
|
name='lifting-month'),
|
|
|
|
url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/$', views.day_lifts,
|
|
|
|
name='lifting-day'),
|
2015-04-06 15:43:36 +00:00
|
|
|
|
|
|
|
url(r'^fitnotes/$', views.fitnotes_upload),
|
|
|
|
]
|