X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/6c9978c5bf8b1ef20871557c22b8b02df647d700..46ec8f39ae3e726a294a2288e51354ff834ba45e:/contact/urls.py?ds=sidebyside diff --git a/contact/urls.py b/contact/urls.py index 16033a1..823470b 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'), )