From 9b88fff43a091872b7f7d80cd97128b3e57076f3 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 16 Dec 2012 14:07:51 -0500 Subject: Calendar handler --- frontend/templates/calendar.html | 91 ++++++++++++++++++++++++++++++++++++++++ frontend/views.py | 11 +++++ 2 files changed, 102 insertions(+) create mode 100644 frontend/templates/calendar.html (limited to 'frontend') diff --git a/frontend/templates/calendar.html b/frontend/templates/calendar.html new file mode 100644 index 0000000..d3ee9af --- /dev/null +++ b/frontend/templates/calendar.html @@ -0,0 +1,91 @@ +{% load static %} +{% get_static_prefix as STATIC_PREFIX %} + + + +SCANNERJAMMER HISTORY + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+
+ +
+ +
+ + + +
+ +
+ +
+
+ +
+ +
+
please enable javascript
+ + + + + + + + + + + + + + + + + + + + + + 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 + -- cgit v1.2.3-70-g09d2