{% load i18n %} {% if sh_title %} {% trans "Questions" as sh_title %} {% with sh_title=sh_title sh_ec_id="q_1" sh_icon="icon-question-sign" sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %} {% endif %}
{% if question_list %}
{% for q in question_list %}

{{ q.description|linebreaksbr }}

{% with project_part_list=q.project_parts.all %} {% if project_part_list %}

{% for pp in project_part_list %} {{ pp }}
{% endfor %}

{% endif %} {% endwith %} {% with participant_list=q.participants.all %} {% if participant_list %}

{% for p in participant_list %} {{ p }}
{% endfor %}

{% endif %} {% endwith %} {% with event_list=q.events.all %} {% if event_list %}

{% for e in event_list %} {{ e }}
{% endfor %}

{% endif %} {% endwith %}

{% endfor %}
{% else %}

{% trans "No questions available." %}

{% endif %}