# -*- 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\d+).*/$', 'theme.views.theme_change'), url(r'^tag/change/(?P\d+).*/$', 'theme.views.tag_change'), url(r'^theme/all/$', 'theme.views.theme_all'), url(r'^tag/all/$', 'theme.views.tag_all'), )