mirror of https://github.com/snachodog/mybuddy.git
14 lines
403 B
Python
14 lines
403 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.DashboardRedirect.as_view(), name='dashboard-redirect'),
|
|
url(r'^dashboard/$', views.Dashboard.as_view(), name='dashboard'),
|
|
url(r'^children/(?P<slug>[^/.]+)/dashboard/$',
|
|
views.ChildDashboard.as_view(), name='dashboard-child'),
|
|
]
|