{% extends "meeting-base.html" %} {% block headtitle %}{{ session }} | Programme{% endblock %} {% load staticfiles %} {% block content %}
{{ session }} - Scoring
{% csrf_token %}

{% for question in before_questions %}
{% if question.type == 'scale' %}
{{ question.lower_scale|default:'Poor' }}
{{ question.upper_scale|default:'Excellent' }}
1
2
3
4
5
{% elif question.type == 'text' %}
{% endif %}
{% endfor %}
{% if presentations and presentation_questions %}

Please rate the individual presentations:

{% for presentation in presentations %}

{{ presentation }}

{% for question in presentation_questions %}
{% if question.type == 'scale' %}
{{ question.lower_scale|default:'Poor' }}
{{ question.upper_scale|default:'Excellent' }}
1
2
3
4
5
{% elif question.type == 'yes-no' %}
Yes
No
{% elif question.type == 'text' %}
{% endif %}
{% endfor %} {% endfor %} {% endif %}
{% for question in after_questions %}
{% if question.type == 'scale' %}
{{ question.lower_scale|default:'Poor' }}
{{ question.upper_scale|default:'Excellent' }}
1
2
3
4
5
{% elif question.type == 'text' %}
{% endif %}
{% endfor %}
{% endblock %} {% block footer_script %} {% endblock %}