diff options
| author | root <root@lalalizard.com> | 2012-12-14 11:46:03 -0500 |
|---|---|---|
| committer | root <root@lalalizard.com> | 2012-12-14 11:46:03 -0500 |
| commit | cbaf7652b5a9692d40ffebac2b8cdbf5ce705ae4 (patch) | |
| tree | b4b2936a57bb1d12c51b2675c309471c4230c18d /frontend/views.py | |
| parent | 4c1b8e7696ce133efd46e6b35b2ee9a5d1074e06 (diff) | |
Faq handler
Diffstat (limited to 'frontend/views.py')
| -rw-r--r-- | frontend/views.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/views.py b/frontend/views.py index bc12b82..9fec138 100644 --- a/frontend/views.py +++ b/frontend/views.py @@ -226,3 +226,15 @@ def room(request, roomname): ) response['Pragma'] = 'no-cache' return response + +def faq(request): + response = render_to_response( + 'faq.html', + { + 'SERVER_HOST': settings.SERVER_HOST, + 'SERVER_PORT': settings.SERVER_PORT, + } + ) + response['Pragma'] = 'no-cache' + return response + |
