{% extends "jury/base.html.twig" %} {% import "jury/jury_macros.twig" as macros %} {% block title %}Rejudgings - {{ parent() }}{% endblock %} {% block extrahead %} {{ parent() }} {{ macros.table_extrahead() }} {% endblock %} {% block content %}

Rejudgings

{% if rejudgings is empty %}
No rejudgings defined
{% else %} {{ macros.table(rejudgings, table_fields, 0) }} {% endif %}

{{ button(path('jury_rejudging_add'), 'Add new rejudging', 'primary', 'plus') }}

{% endblock %}