{% extends "orga/base.html" %} {% comment %} SPDX-FileCopyrightText: 2017-present Tobias Kunze SPDX-License-Identifier: AGPL-3.0-only WITH LicenseRef-Pretalx-AGPL-3.0-Terms {% endcomment %} {% load i18n %} {% load static %} {% load times %} {% load history_sidebar %} {% block stylesheets %} {% endblock stylesheets %} {% block scripts %} {% endblock scripts %} {% block extra_title %}{{ quotation_open }}{{ question.question }}{{ quotation_close }} :: {% endblock extra_title %} {% block content %}
{% 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 %}
|---|---|---|
| {% partialdef answer_label %} {% if answer.answer %} {{ answer.answer|truncatechars:140 }} {% else %} {{ answer.options__answer|truncatechars:140 }} {% endif %} {% endpartialdef %} {% if question.target != "reviewer" %} {% partial answer_label %} {% else %} {% partial answer_label %} {% endif %} | {{ answer.count }} | {% widthratio answer.count answer_count 100 %} % |