{% extends "orga/generic/table.html" %} {% load i18n %} {% comment %} This template is specifically for the ReviewTable which needs special handling because the table is wrapped in a form (for state changes), which would conflict with the table configuration form. This template separates the configuration form from the review form. {% endcomment %} {% block table-wrapper %} {% block table-configuration %} {{ block.super }} {% endblock table-configuration %}
{% csrf_token %}
{% block table %} {{ block.super }} {% endblock table %}
{% block pagination %} {{ block.super }} {% endblock pagination %} {% block submit-bar %}
{% translate "Accept" %}: {% translate "Reject" %}:
{% endblock submit-bar %}
{% endblock table-wrapper %}