X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/d29e7ec36ee9d49763dfe72e52275f3a2709e1c2..1084f388829b560079274b78214a6fda41f8ef23:/contact/urls.py diff --git a/contact/urls.py b/contact/urls.py index f2ef944..ed6f49c 100644 --- a/contact/urls.py +++ b/contact/urls.py @@ -5,7 +5,10 @@ from . import views urlpatterns = patterns( 'contact.views', url(r'^(?P[^/]+)/$', views.form, name='contact_form'), + url(r'^(?P[^/]+)/edit/(?P[0-9]+)/(?P[0-9a-zA-Z]+)/$', views.form, name='edit_form'), url(r'^(?P[^/]+)/thanks/$', views.thanks, name='contact_thanks'), url(r'^attachment/(?P\d+)/(?P[^/]+)/$', views.attachment, name='contact_attachment'), + url(r'^attachment/(?P\d+)/(?P[^/]+)/(?P[0-9a-zA-Z]+)/$', views.attachment_key, + name='contact_attachment_key'), url(r'^results/(?P\d+)/(?P[0-9a-f]+)/', views.results, name='contact_results'), )