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
453 B
11 lines
453 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^theme/add.*/$', 'theme.views.theme_add'),
|
|
url(r'^tag/add.*/$', 'theme.views.tag_add'),
|
|
url(r'^theme/change/(?P<theme_id>\d+).*/$', 'theme.views.theme_change'),
|
|
url(r'^tag/change/(?P<tag_id>\d+).*/$', 'theme.views.tag_change'),
|
|
url(r'^theme/all/$', 'theme.views.theme_all'),
|
|
url(r'^tag/all/$', 'theme.views.tag_all'),
|
|
) |