{# This partial template renders a table of all objects, to be populated with rows via an AJAX request. # This extends a generic template for paginated tables. # # Note that this template contains a "skeleton" table with an empty table body, and then a block of Handlebars templates which are used # to render the table cells with the data from the AJAX request. #} {% extends "tables/table-paginated.html.twig" %} {% block table %} {% if 'question' in table.columns %} {% endif %} {% if 'creator' in table.columns %} {% endif %}
{{translate("ID")}} {{translate("TITLE")}} {{translate("TEXT")}} {{translate("COLOR")}} {{translate("IMAGE")}} {{translate('QUESTION')}} {{translate("IS_ENABLED")}} {{translate("DISABLED_TEXT")}} {{translate('USER')}} {{translate('CREATED_AT')}} {{translate("ACTIONS")}}
{% endblock %} {% block table_cell_templates %} {# This contains a series of {% endverbatim %} {% endblock %}