{% extends "jury/base.html.twig" %} {% import "jury/jury_macros.twig" as macros %} {% block title %}Clarifications - {{ parent() }}{% endblock %} {% block extrahead %} {{ parent() }} {{ macros.table_extrahead() }} {% endblock %} {% block content %}
No new clarification requests.
{%- else %} {%- include 'jury/partials/clarification_list.html.twig' with {clarifications: newClarifications, direction: 'from'} %} {%- endif %} {% endif %} {% if currentFilter is null or currentFilter == 'handled' %}No old clarification requests.
{%- else %} {%- include 'jury/partials/clarification_list.html.twig' with {clarifications: oldClarifications, direction: 'from'} %} {%- endif %} {% endif %} {% if currentFilter is null or currentFilter == 'general' %}No general clarifications.
{%- else %} {%- include 'jury/partials/clarification_list.html.twig' with {clarifications: generalClarifications, direction: 'to'} %} {%- endif %} {% endif %} {%- endif %} {% endblock %}