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

{% for question in 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 %}
{% endblock %} {% block footer_script %} {% endblock %}