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
372 B

# -*- coding: utf-8 -*-
from django.conf.urls import patterns, include, url
urlpatterns = patterns('photoreport.admin',
url(r'^add.*/$', 'photoreport_add'),
url(r'^delete/(?P<url>.*)/$', 'photoreport_delete'),
url(r'^change/(?P<url>.*)/$', 'photoreport_change'),
#url(r'^copy/(?P<url>.*)/$', 'photoreport_copy'),
url(r'^all/$', 'photoreport_all'),
)