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
717 B
16 lines
717 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
from admin import MetaListView, MetaView
|
|
from .views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText
|
|
|
|
urlpatterns = patterns('conference.admin',
|
|
|
|
url(r'^seo/new/$', CreateSeoText.as_view(), name='seo_new'),
|
|
url(r'^seo/all/$', SeoTextList.as_view(), name='seo_all'),
|
|
url(r'^seo/edit/(?P<pk>\d{1,5})/$', EditSeoText.as_view(), name='seo_edit'),
|
|
url(r'^seo/delete/(?P<pk>\d{1,5})/$', DeleteSeoText.as_view(), name='seo_delete'),
|
|
url(r'^all/$', MetaListView.as_view()),
|
|
#url(r'^change/(?P<url>.*)/$', 'conference_change'),
|
|
url(r'^(?P<id>.*)/$', MetaView.as_view()),
|
|
url(r'^$', MetaView.as_view()),
|
|
) |