{% extends "orga/cfp/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load times %} {% block cfp_content %}

»{{ question.question }}« ({{ question.get_variant_display }})

{% if question.active %}
{% trans "This question is currently active, it will be asked during submission." %} {% trans "Hide question" %}
{% else %}
{% trans "This question is currently inactive, and will not be asked during submission." %} {% trans "Activate question" %}
{% endif %} {% if not answer_count %} {% trans "Nobody has answered this question at the moment." %} {% else %}
{% bootstrap_form filter_form layout='inline' %}
{% if missing_answers %} {% blocktrans with count=question.answers.count|times missing=missing_answers trimmed %} This question has been answered {{ count }}, {{ missing }} answers are still missing. {% endblocktrans %} {% else %} {% blocktrans with count=question.answers.count|times trimmed %} This question has been answered {{ count }}, and no answers are missing. {% endblocktrans %} {% endif %} {% endif %} {% endblock %}