X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/01024098d66627cab00a96cc8ca5de8f3ca8ea75..1e56d8964c491d8936670a92acf5b5f6730a6948:/contact/urls.py diff --git a/contact/urls.py b/contact/urls.py index f2ef944..b0866ed 100644 --- a/contact/urls.py +++ b/contact/urls.py @@ -5,6 +5,7 @@ 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'^results/(?P\d+)/(?P[0-9a-f]+)/', views.results, name='contact_results'),