{% extends "public/content.html" %} {% load get_post_values %} {% block headtitle %} {{ evaluation.name }} {% endblock %} {% block contact_active %}active{% endblock %} {% block title %}

{{ evaluation.name }}

{% endblock %} {% block content %}
{{ evaluation.description|safe }}
{% csrf_token %} {% include "public/partials/form.html" with form=evaluation_form %} {% if evaluation_days %}

Please Indicate the days which you attended

{% for day in evaluation_days %}
{% endfor %}
{% endif %} {% for area in evaluation_areas %} {% if area.get_items %}

{{ area.name}}

{% if area.scale == 'more-less' %} {% elif area.scale == 'numeric' %} {% else %} {% endif %} {% for item in area.get_items %} {% if area.scale == 'more-less' %} {% elif area.scale == 'numeric' %} {% else %} {% endif %} {% endfor %}
More Less No Change1 2 3 4 5Poor Ok Good Excellent
{{ item.name }} {{ item|get_evaluation_item_post_value:request }} {% if item.did_not_attend_option %}
{% endif %}
{% endif %} {% endfor %} {% if evaluation_questions %} {% for question in evaluation_questions %}
{% if question.type == "text" %}
{% else %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}