diff options
author | prathamesh | 2014-12-02 16:35:13 +0530 |
---|---|---|
committer | prathamesh | 2014-12-02 16:35:13 +0530 |
commit | 3352bff4d70cac5884d87c20e300131243cc1305 (patch) | |
tree | 1460427ebecef6899cc39d0799fd7a739e601032 /certificate/urls.py | |
download | certificate-generator-3352bff4d70cac5884d87c20e300131243cc1305.tar.gz certificate-generator-3352bff4d70cac5884d87c20e300131243cc1305.tar.bz2 certificate-generator-3352bff4d70cac5884d87c20e300131243cc1305.zip |
Initial commit, development stage.
Auto generation of certificate for Scilab conference
Diffstat (limited to 'certificate/urls.py')
-rw-r--r-- | certificate/urls.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/certificate/urls.py b/certificate/urls.py new file mode 100644 index 0000000..04f2f8a --- /dev/null +++ b/certificate/urls.py @@ -0,0 +1,13 @@ +from django.conf.urls import patterns, include, url + +from django.contrib import admin +admin.autodiscover() + +urlpatterns = patterns('', + # Examples: + # 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'), +) |