2017-08-21 23:21:08 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-12-13 23:12:32 +00:00
|
|
|
from django.urls import path
|
2017-08-21 23:21:08 +00:00
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
2017-12-03 21:52:27 +00:00
|
|
|
app_name = 'reports'
|
|
|
|
|
2017-08-21 23:21:08 +00:00
|
|
|
urlpatterns = [
|
2020-01-26 22:12:27 +00:00
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/changes/amounts/',
|
2020-01-26 22:12:27 +00:00
|
|
|
views.DiaperChangeAmounts.as_view(),
|
|
|
|
name='report-diaperchange-amounts-child'
|
|
|
|
),
|
2017-12-13 23:12:32 +00:00
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/changes/lifetimes/',
|
2017-09-25 17:14:14 +00:00
|
|
|
views.DiaperChangeLifetimesChildReport.as_view(),
|
2017-12-13 23:12:32 +00:00
|
|
|
name='report-diaperchange-lifetimes-child'
|
|
|
|
),
|
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/changes/types/',
|
2017-09-13 15:25:12 +00:00
|
|
|
views.DiaperChangeTypesChildReport.as_view(),
|
2017-12-13 23:12:32 +00:00
|
|
|
name='report-diaperchange-types-child'
|
|
|
|
),
|
2019-05-29 17:05:30 +00:00
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/feeding/amounts/',
|
2019-05-29 17:05:30 +00:00
|
|
|
views.FeedingAmountsChildReport.as_view(),
|
|
|
|
name='report-feeding-amounts-child'
|
|
|
|
),
|
2017-12-13 23:12:32 +00:00
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/feeding/duration/',
|
2017-11-30 02:28:54 +00:00
|
|
|
views.FeedingDurationChildReport.as_view(),
|
2017-12-13 23:12:32 +00:00
|
|
|
name='report-feeding-duration-child'
|
|
|
|
),
|
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/sleep/pattern/',
|
2017-09-13 15:25:12 +00:00
|
|
|
views.SleepPatternChildReport.as_view(),
|
2017-12-13 23:12:32 +00:00
|
|
|
name='report-sleep-pattern-child'
|
|
|
|
),
|
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/sleep/totals/',
|
2017-09-13 15:53:32 +00:00
|
|
|
views.SleepTotalsChildReport.as_view(),
|
2017-12-13 23:12:32 +00:00
|
|
|
name='report-sleep-totals-child'
|
|
|
|
),
|
|
|
|
path(
|
2021-04-25 10:36:57 +00:00
|
|
|
'children/<str:slug>/reports/weight/weight/',
|
2018-05-20 21:42:14 +00:00
|
|
|
views.WeightWeightChildReport.as_view(),
|
2017-12-13 23:12:32 +00:00
|
|
|
name='report-weight-weight-child'
|
|
|
|
),
|
2017-08-21 23:21:08 +00:00
|
|
|
]
|