# -*- coding: utf-8 -*- from django.urls import path from . import views app_name = "reports" urlpatterns = [ path( "children//reports", views.ChildReportList.as_view(), name="report-list", ), path( "children//reports/changes/amounts/", views.DiaperChangeAmounts.as_view(), name="report-diaperchange-amounts-child", ), path( "children//reports/changes/lifetimes/", views.DiaperChangeLifetimesChildReport.as_view(), name="report-diaperchange-lifetimes-child", ), path( "children//reports/changes/types/", views.DiaperChangeTypesChildReport.as_view(), name="report-diaperchange-types-child", ), path( "children//reports/feeding/amounts/", views.FeedingAmountsChildReport.as_view(), name="report-feeding-amounts-child", ), path( "children//reports/feeding/duration/", views.FeedingDurationChildReport.as_view(), name="report-feeding-duration-child", ), path( "children//reports/sleep/pattern/", views.SleepPatternChildReport.as_view(), name="report-sleep-pattern-child", ), path( "children//reports/sleep/totals/", views.SleepTotalsChildReport.as_view(), name="report-sleep-totals-child", ), path( "children//reports/tummytime/duration/", views.TummyTimeDurationChildReport.as_view(), name="report-tummytime-duration-child", ), path( "children//reports/weight/weight/", views.WeightWeightChildReport.as_view(), name="report-weight-weight-child", ), path( "children//reports/height/height/", views.HeightHeightChildReport.as_view(), name="report-height-height-child", ), path( "children//reports/head-circumference/head-circumference/", views.HeadCircumferenceHeadCircumferenceChildReport.as_view(), name="report-head-circumference-head-circumference-child", ), path( "children//reports/bmi/bmi/", views.BMIBMIChildReport.as_view(), name="report-bmi-bmi-child", ), ]