app/soc/templates/soc/survey/public.html
author James Levy <jamesalexanderlevy@gmail.com>
Tue, 04 Aug 2009 15:34:41 +0200
changeset 2721 e32118b84718
parent 2660 e2654d53a643
child 2801 0ee67cc9bd20
permissions -rw-r--r--
Added template for viewing Survey Records. Reviewed by: Lennard de Rijk

{% extends "soc/base.html" %}
{% comment %}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}
{% load forms_helpers %}

{% block scripts %}
{{ block.super }}
<script type="text/javascript" src="/soc/content/js/survey-default-text-090627.js"></script>
<script type="text/javascript" src="/soc/content/js/survey-take-090708.js"></script>
<script type="text/javascript" src="/jquery/jquery-growfield.js"></script>
{% endblock %}

{% block header_title %}
{{ entity.title }}
{% endblock %}

{% block body %}
<div id="created">Last modified on {{ entity.modified }} by {{ entity.modified_by.name }}</div>

{% if survey_form %}

  <form method="get" onsubmit="javascript:return false">
  {% block page_description %}
    This page gives a preview of how users will see the Survey.
  {% endblock %}

    {% if entity.content %}
      <div id="survey_description">
        {{ entity.content|safe }}
      </div>
    {% endif %}

    <div style="width:100%; float:left;">
      <div class="{{ status }}" id="survey_widget">
        <table>
          {% block form_table %}
            {% as_twoline_table survey_form %}
          {% endblock %}
        </table>
      </div> {# end survey_widget #}
    </div>
  </form>
{% endif %}

{% endblock %}