mirror of https://github.com/snachodog/mybuddy.git
18 lines
535 B
Python
18 lines
535 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.Index.as_view(), name='index'),
|
|
|
|
url(r'children/$', views.ChildList.as_view(), name='child-list'),
|
|
url(r'children/add/$', views.ChildAdd.as_view(), name='child-add'),
|
|
url(r'children/(?P<pk>[0-9]+)/$', views.ChildUpdate.as_view(),
|
|
name='child-update'),
|
|
url(r'children/(?P<pk>[0-9]+)/delete/$', views.ChildDelete.as_view(),
|
|
name='child-delete'),
|
|
]
|