mybuddy/reports/urls.py

55 lines
1.6 KiB
Python
Raw Normal View History

2017-08-21 23:21:08 +00:00
# -*- coding: utf-8 -*-
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(
'children/<str:slug>/reports/changes/amounts/',
2020-01-26 22:12:27 +00:00
views.DiaperChangeAmounts.as_view(),
name='report-diaperchange-amounts-child'
),
path(
'children/<str:slug>/reports/changes/lifetimes/',
2017-09-25 17:14:14 +00:00
views.DiaperChangeLifetimesChildReport.as_view(),
name='report-diaperchange-lifetimes-child'
),
path(
'children/<str:slug>/reports/changes/types/',
2017-09-13 15:25:12 +00:00
views.DiaperChangeTypesChildReport.as_view(),
name='report-diaperchange-types-child'
),
2019-05-29 17:05:30 +00:00
path(
'children/<str:slug>/reports/feeding/amounts/',
2019-05-29 17:05:30 +00:00
views.FeedingAmountsChildReport.as_view(),
name='report-feeding-amounts-child'
),
path(
'children/<str:slug>/reports/feeding/duration/',
views.FeedingDurationChildReport.as_view(),
name='report-feeding-duration-child'
),
path(
'children/<str:slug>/reports/sleep/pattern/',
2017-09-13 15:25:12 +00:00
views.SleepPatternChildReport.as_view(),
name='report-sleep-pattern-child'
),
path(
'children/<str:slug>/reports/sleep/totals/',
2017-09-13 15:53:32 +00:00
views.SleepTotalsChildReport.as_view(),
name='report-sleep-totals-child'
),
2021-10-04 19:37:11 +00:00
path(
'children/<str:slug>/reports/tummytime/duration/',
views.TummyTimeDurationChildReport.as_view(),
name='report-tummytime-duration-child'
),
path(
'children/<str:slug>/reports/weight/weight/',
2018-05-20 21:42:14 +00:00
views.WeightWeightChildReport.as_view(),
name='report-weight-weight-child'
),
2017-08-21 23:21:08 +00:00
]