mirror of https://github.com/snachodog/mybuddy.git
14 lines
364 B
Python
14 lines
364 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^reports/(?P<slug>[^/.]+)/changes/$',
|
|
views.DiaperChangeReport.as_view(), name='report-diaperchange'),
|
|
url(r'^reports/(?P<slug>[^/.]+)/sleep/$',
|
|
views.SleepReport.as_view(), name='report-sleep'),
|
|
]
|