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.
14 lines
378 B
14 lines
378 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
|
|
urlpatterns = patterns('news.admin',
|
|
url(r'^add.*/$', 'news_add'),
|
|
url(r'^change/(?P<url>.*)/$', 'news_change'),
|
|
url(r'^copy/(?P<url>.*)/$', 'news_copy'),
|
|
url(r'^delete/(?P<url>.*)/$', 'news_delete'),
|
|
url(r'^all/$', 'news_all'),
|
|
#ajax
|
|
url(r'^event/$', 'get_event_id'),
|
|
)
|
|
|
|
|
|
|