diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-01-20 11:06:19 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-01-20 11:06:19 +0200 |
| commit | f6b389233e2d8ac3b4d29322d86fceb2e2de7a37 (patch) | |
| tree | 2228ea145cad6b89e6ce188694637633dbcf04db /main/views.py | |
initial commit
Diffstat (limited to 'main/views.py')
| -rw-r--r-- | main/views.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/main/views.py b/main/views.py new file mode 100644 index 0000000..b0f1454 --- /dev/null +++ b/main/views.py @@ -0,0 +1,7 @@ +from django.http import HttpResponse +from django.shortcuts import render_to_response +from django.template import RequestContext +import mptt + +def index(request): + return render_to_response('main.html', {}, context_instance=RequestContext(request))
\ No newline at end of file |
