{# This partial template renders a table of permissions, 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 %} {% for task in tasks %} {% endfor %}
{{translate('NAME')}} {{translate('SPRINKLE')}} {{translate('SCHEDULE')}} {{translate('NEXT_RUN_TIME')}}
{{task.name}}
{{task.sprinkle}} ({{task.schedule}}) {{task.schedule | formatCron()}} {{ task.next_run | format_datetime(pattern='HH:mm:ss dd/MM/yyyy') }}
{% endblock %} {% block table_pager_controls %}{% endblock %}