summaryrefslogtreecommitdiff
path: root/sublab_project/matekarte/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'sublab_project/matekarte/urls.py')
-rw-r--r--sublab_project/matekarte/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/sublab_project/matekarte/urls.py b/sublab_project/matekarte/urls.py
new file mode 100644
index 0000000..f15aaa7
--- /dev/null
+++ b/sublab_project/matekarte/urls.py
@@ -0,0 +1,6 @@
+from django.conf.urls.defaults import patterns, url
+from django.views.generic.simple import direct_to_template
+
+urlpatterns = patterns('',
+ url(r'^$', direct_to_template, {'template': 'matekarte/matekarte.html' }),
+)