# -*- coding: utf-8 -*- from django.conf.urls import patterns, include, url urlpatterns = patterns('theme.admin', url(r'^theme/add.*/$', 'theme_add'), url(r'^tag/add.*/$', 'tag_add'), url(r'^theme/delete/(?P\d+)/$', 'theme_delete'), url(r'^tag/delete/(?P\d+)/$', 'tag_delete'), url(r'^theme/change/(?P\d+).*/$', 'theme_change'), url(r'^tag/change/(?P\d+).*/$', 'tag_change'), url(r'^theme/copy/(?P\d+).*/$', 'theme_copy'), url(r'^tag/copy/(?P\d+).*/$', 'tag_copy'), url(r'^theme/all/$', 'theme_all'), url(r'^tag/all/$', 'tag_all'), )