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

Used executables

{{ macros.table(executables_used, table_fields, {'ordering': 'false'}) }}

Unused executables

{{ macros.table(executables_unused, table_fields, {'ordering': 'false'}) }} {% if is_granted('ROLE_ADMIN') %}

{{ button(path('jury_executable_add'), 'Add new executable', 'primary', 'plus') }}

{% endif %} {% endblock %}