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-10-20 14:21:50 +00:00
|
|
|
url(r'^children/(?P<slug>[^/.]+)/reports/changes/lifetimes/$',
|
2017-09-25 17:14:14 +00:00
|
|
|
views.DiaperChangeLifetimesChildReport.as_view(),
|
|
|
|
name='report-diaperchange-lifetimes-child'),
|
2017-10-20 14:21:50 +00:00
|
|
|
url(r'^children/(?P<slug>[^/.]+)/reports/changes/types/$',
|
2017-09-13 15:25:12 +00:00
|
|
|
views.DiaperChangeTypesChildReport.as_view(),
|
|
|
|
name='report-diaperchange-types-child'),
|
2017-09-13 15:53:32 +00:00
|
|
|
|
2017-11-30 02:28:54 +00:00
|
|
|
url(r'^children/(?P<slug>[^/.]+)/reports/feeding/duration/$',
|
|
|
|
views.FeedingDurationChildReport.as_view(),
|
|
|
|
name='report-feeding-duration-child'),
|
|
|
|
|
2017-10-20 14:21:50 +00:00
|
|
|
url(r'^children/(?P<slug>[^/.]+)/reports/sleep/pattern/$',
|
2017-09-13 15:25:12 +00:00
|
|
|
views.SleepPatternChildReport.as_view(),
|
|
|
|
name='report-sleep-pattern-child'),
|
2017-10-20 14:21:50 +00:00
|
|
|
url(r'^children/(?P<slug>[^/.]+)/reports/sleep/totals/$',
|
2017-09-13 15:53:32 +00:00
|
|
|
views.SleepTotalsChildReport.as_view(),
|
|
|
|
name='report-sleep-totals-child'),
|
2017-11-10 12:20:34 +00:00
|
|
|
|
|
|
|
url(r'^children/(?P<slug>[^/.]+)/reports/weight/weight/$',
|
|
|
|
views.WeightWeightChildReoport.as_view(),
|
|
|
|
name='report-weight-weight-child'),
|
2017-08-21 23:21:08 +00:00
|
|
|
]
|