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.
16 lines
536 B
16 lines
536 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
from admin import CompanyListView, CompanyView
|
|
|
|
urlpatterns = patterns('company.admin',
|
|
url(r'^all/$', CompanyListView.as_view()),
|
|
url(r'^$', CompanyView.as_view()),
|
|
url(r'^(?P<url>.*)/$', CompanyView.as_view()),
|
|
|
|
#url(r'^add.*/$', 'company_add'),
|
|
#url(r'^delete/(?P<url>.*)/$', 'company_delete'),
|
|
#url(r'^change/(?P<url>.*).*/$', 'company_change'),
|
|
#url(r'^all/$', 'company_all'),
|
|
#url(r'^all/$', CompanyListView.as_view()),
|
|
|
|
) |