From cfab2cec623f6b277fb562b06b9ce9d8c6d68bbb Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Mon, 23 Jan 2012 21:49:39 +0100 Subject: add matekarte for now --- sublab_project/matekarte/urls.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sublab_project/matekarte/urls.py (limited to 'sublab_project/matekarte/urls.py') 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' }), +) -- cgit v1.2.1