mybuddy/reports/urls.py

15 lines
394 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 = [
url(r'^reports/changes/(?P<slug>[^/.]+)/$',
2017-08-25 12:08:02 +00:00
views.DiaperChangesChildReport.as_view(),
name='report-diaperchange-child'),
url(r'^reports/sleep/(?P<slug>[^/.]+)$',
views.SleepChildReport.as_view(), name='report-sleep-child'),
2017-08-21 23:21:08 +00:00
]