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
378 B
11 lines
378 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()),
|
|
) |