mybuddy/reports/urls.py

24 lines
718 B
Python
Raw Normal View History

2017-08-21 23:21:08 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.conf.urls import url
from . import views
urlpatterns = [
2017-09-13 15:25:12 +00:00
url(r'^reports/changes/types/(?P<slug>[^/.]+)/$',
views.DiaperChangeTypesChildReport.as_view(),
name='report-diaperchange-types-child'),
2017-09-13 15:53:32 +00:00
2017-09-13 15:25:12 +00:00
url(r'^reports/sleep/pattern/(?P<slug>[^/.]+)$',
views.SleepPatternChildReport.as_view(),
name='report-sleep-pattern-child'),
2017-09-13 15:53:32 +00:00
url(r'^reports/sleep/totals/(?P<slug>[^/.]+)$',
views.SleepTotalsChildReport.as_view(),
name='report-sleep-totals-child'),
2017-09-15 12:11:41 +00:00
url(r'^reports/timeline/(?P<slug>[^/.]+)$',
views.TimelineChildReport.as_view(),
name='report-timeline-child'),
2017-08-21 23:21:08 +00:00
]