{% extends "orga/base.html" %} {% load compress %} {% load i18n %} {% load static %} {% load times %} {% block stylesheets %} {% endblock stylesheets %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block extra_title %}{{ quotation_open }}{{ question.question }}{{ quotation_close }} :: {% endblock extra_title %} {% block content %}
{% if question.active %} {% translate "This field is currently active, it will be asked during submission." %} {% translate "Hide field" %} {% else %} {% translate "This field is currently inactive, and will not be asked during submission." %} {% translate "Activate field" %} {% endif %}
{% if not answer_count %} {% translate "Nobody has responded to this field at the moment." %} {% else %}{% if missing_answers %} {% blocktranslate with count=answer_count|times missing=missing_answers href=base_search_url trimmed %} This field has {{ count }} responses, {{ missing }} are still missing. {% endblocktranslate %} {% else %} {% blocktranslate with count=question.answers.count|times trimmed %} This field has {{ count }} responses, and no answers are missing. {% endblocktranslate %} {% endif %}
{% translate "Response" %} | {% translate "Count" %} | {% translate "%" %} | {% for answer in grouped_answers %}
---|---|---|
{% if question.target != "reviewer" %} {% endif %} {% if answer.answer %} {{ answer.answer|truncatechars:140 }} {% else %} {{ answer.options__answer|truncatechars:140 }} {% endif %} {% if question.target != "reviewer" %}{% endif %} | {{ answer.count }} | {% widthratio answer.count answer_count 100 %} % |