fnp
/
edumed.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update send results
[edumed.git]
/
contact
/
urls.py
diff --git
a/contact/urls.py
b/contact/urls.py
index
de72e82
..
823470b
100644
(file)
--- a/
contact/urls.py
+++ b/
contact/urls.py
@@
-1,9
+1,11
@@
-from django.conf.urls.defaults import *
+# -*- coding: utf-8 -*-
+from django.conf.urls import patterns, url
from . import views
from . import views
-urlpatterns = patterns('contact.views',
+urlpatterns = patterns(
+ 'contact.views',
url(r'^(?P<form_tag>[^/]+)/$', views.form, name='contact_form'),
url(r'^(?P<form_tag>[^/]+)/$', views.form, name='contact_form'),
+ url(r'^(?P<form_tag>[^/]+)/edit/(?P<contact_id>[0-9]+)/(?P<key>[0-9a-zA-Z]+)/$', views.form, name='edit_form'),
url(r'^(?P<form_tag>[^/]+)/thanks/$', views.thanks, name='contact_thanks'),
url(r'^(?P<form_tag>[^/]+)/thanks/$', views.thanks, name='contact_thanks'),
- url(r'^attachment/(?P<contact_id>\d+)/(?P<tag>[^/]+)/$',
- views.attachment, name='contact_attachment'),
+ url(r'^attachment/(?P<contact_id>\d+)/(?P<tag>[^/]+)/$', views.attachment, name='contact_attachment'),
)
)