summaryrefslogtreecommitdiff
path: root/certificate
diff options
context:
space:
mode:
Diffstat (limited to 'certificate')
-rw-r--r--certificate/urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/certificate/urls.py b/certificate/urls.py
index 04f2f8a..5e4827f 100644
--- a/certificate/urls.py
+++ b/certificate/urls.py
@@ -8,6 +8,7 @@ urlpatterns = patterns('',
# url(r'^$', 'fossee_project.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
- url(r'^download/', 'certificate.views.download', name='download'),
- url(r'^verify/', 'certificate.views.verify', name='verify'),
+ url(r'^$', 'certificate.views.download', name='download'),
+ url(r'^download/$', 'certificate.views.download', name='download'),
+ url(r'^verify/$', 'certificate.views.verify', name='verify'),
)