summaryrefslogtreecommitdiff
path: root/fossee_project/urls.py
diff options
context:
space:
mode:
authorprathamesh2014-12-02 16:35:13 +0530
committerprathamesh2014-12-02 16:35:13 +0530
commit3352bff4d70cac5884d87c20e300131243cc1305 (patch)
tree1460427ebecef6899cc39d0799fd7a739e601032 /fossee_project/urls.py
downloadcertificate-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 'fossee_project/urls.py')
-rw-r--r--fossee_project/urls.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/fossee_project/urls.py b/fossee_project/urls.py
new file mode 100644
index 0000000..162dd5d
--- /dev/null
+++ b/fossee_project/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'^admin/', include(admin.site.urls)),
+ url(r'^certificate/', include('certificate.urls')),
+)