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.
13 lines
450 B
13 lines
450 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
from admin import CountryListView
|
|
|
|
urlpatterns = patterns('country.admin',
|
|
url(r'^add.*/$', 'country_add'),
|
|
url(r'^delete/(?P<url>.*)/$', 'country_delete'),
|
|
url(r'^change/(?P<url>.*)/$', 'country_change'),
|
|
#url(r'^all/$', 'country_all'),
|
|
url(r'^all/$', CountryListView.as_view()),
|
|
url(r'^search/$', 'search_country', name='admin_country_search'),
|
|
|
|
)
|
|
|