summaryrefslogtreecommitdiff
path: root/frontend/views.py
diff options
context:
space:
mode:
authorroot <root@lalalizard.com>2012-12-16 14:07:51 -0500
committerroot <root@lalalizard.com>2012-12-16 14:07:51 -0500
commit9b88fff43a091872b7f7d80cd97128b3e57076f3 (patch)
tree19261db1bcad63e0983367da55b5c807630139d2 /frontend/views.py
parentb1c0b2a7fcf808a4321ca4c5daaf14ba4055165b (diff)
Calendar handler
Diffstat (limited to 'frontend/views.py')
-rw-r--r--frontend/views.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/frontend/views.py b/frontend/views.py
index 9285a35..5fb9db6 100644
--- a/frontend/views.py
+++ b/frontend/views.py
@@ -240,3 +240,14 @@ def faq(request):
response['Pragma'] = 'no-cache'
return response
+def calendar(request):
+ response = render_to_response(
+ 'calendar.html',
+ {
+ 'SERVER_HOST': request.get_host(),
+ 'SERVER_PORT': settings.SERVER_PORT,
+ }
+ )
+ response['Pragma'] = 'no-cache'
+ return response
+