You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
503 B
11 lines
503 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import url, patterns
|
|
from .views import *
|
|
|
|
urlpaterns = patterns('',
|
|
url(r'^specialist/new/$', SpecialistCreateView.as_view(), name='specialist_new'),
|
|
url(r'^specialist/all/$', SpecialistListView.as_view(), name='specialist_all'),
|
|
url(r'^specialist/edit/(?P<pk>\d{1,4})/$', SpecialistUpdateView.as_view(), name='specialist_edit'),
|
|
url(r'^specialist/delete/(?P<pk>\d{1,4})/$', SpecialistDeleteView.as_view(), name='specialist_delete'),
|
|
|
|
) |