diff options
| author | root <root@lalalizard.com> | 2012-12-16 14:07:51 -0500 |
|---|---|---|
| committer | root <root@lalalizard.com> | 2012-12-16 14:07:51 -0500 |
| commit | 9b88fff43a091872b7f7d80cd97128b3e57076f3 (patch) | |
| tree | 19261db1bcad63e0983367da55b5c807630139d2 /frontend/views.py | |
| parent | b1c0b2a7fcf808a4321ca4c5daaf14ba4055165b (diff) | |
Calendar handler
Diffstat (limited to 'frontend/views.py')
| -rw-r--r-- | frontend/views.py | 11 |
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 + |
