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.
23 lines
788 B
23 lines
788 B
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import patterns, include, url
|
|
from admin import PlaceExpositionView, PlaceExpositionListView
|
|
|
|
urlpatterns = patterns('place_exposition.admin',
|
|
#url(r'^all/$', 'exposition_all'),
|
|
url(r'^add-hall/(?P<place_id>.*)/$', 'add_hall'),
|
|
url(r'^delete-hall/(?P<hall_id>.*)/$', 'delete_hall'),
|
|
url(r'^upload-photo/(?P<place_id>.*)/$', 'upload_place_photo'),
|
|
|
|
url(r'^all/$', PlaceExpositionListView.as_view()),
|
|
url(r'^add.*/$', 'exposition_add'),
|
|
url(r'^delete/(?P<url>.*)/$', 'exposition_delete'),
|
|
url(r'^change/(?P<url>.*)/$', 'exposition_change'),
|
|
url(r'^copy/(?P<url>.*)/$', 'place_exposition_copy'),
|
|
|
|
url(r'^$', PlaceExpositionView.as_view()),
|
|
url(r'^(?P<url>.*)/$', PlaceExpositionView.as_view()),
|
|
|
|
|
|
|
|
|
|
)
|
|
|