mybuddy/dashboard/urls.py

13 lines
325 B
Python
Raw Normal View History

2017-08-18 13:02:31 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^dashboard/$', views.Dashboard.as_view(), name='dashboard'),
url(r'^children/(?P<slug>[^/.]+)/dashboard/$',
2017-08-19 18:57:21 +00:00
views.ChildDashboard.as_view(), name='dashboard-child'),
2017-08-18 13:02:31 +00:00
]