{% set title, page, page_categorie = 'Cheques list', 'cheque_index', 'cheque' %} {% extends 'base.html.twig' %} {% block title %}{{ title|trans }}{% endblock %} {% block title_h1 %}{{ title|trans }}{% endblock %} {% block body %}
{% for cheque in cheques %} {% else %} {% endfor %}
{% trans %}Id{% endtrans %} {% trans %}Payement_date{% endtrans %} {% trans %}Number{% endtrans %} {% trans %}Description{% endtrans %} {% trans %}Bank{% endtrans %} {% trans %}actions{% endtrans %}
{{ cheque.id }} {{ cheque.payementDate ? cheque.payementDate|date('Y-m-d') : '' }} {{ cheque.number }} {{ cheque.description }} {{ cheque.bank | bank }}
{% trans %}no records found{% endtrans %}
{% trans %}Create new{% endtrans %}
{% endblock %}