{% extends 'base.html.twig' %} {% block title %}Counter index{% endblock %} {% block body %}

Counter index

{% for counter in counters %} {% else %} {% endfor %}
Id StartTime EndTime Name State TimeToLive actions
{{ counter.id }} {{ counter.startTime ? counter.startTime|date('H:i:s') : '' }} {{ counter.endTime ? counter.endTime|date('H:i:s') : '' }} {{ counter.name }} {{ counter.state }} {{ counter.timeToLive | minutes }} {{ "show" | trans }} {{ include('admin/_modif_button.html.twig', {'counter': counter}) }} {{ include('admin/_start_form.html.twig', {'counter': counter}) }}
{{ "no records found" | trans }}
{{ "Create new" | trans }} {% endblock %}