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
380 B
11 lines
380 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
from admin import CompanyListView
|
|
|
|
urlpatterns = patterns('company.admin',
|
|
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()),
|
|
) |