{% extends 'private/base/base.html.twig' %} {% block title %}New Journal Entry Template{% endblock %} {% block body %}
{% block topBar %} {% embed 'components/topBar.html.twig' %}{% endembed %} {% endblock %} {% block menu %} {% embed 'components/menu.html.twig' %}{% endembed %} {% endblock %}
{% embed 'components/pageTitle.html.twig' %}{% endembed %}
{{ form_start(form, { 'attr': { 'id': 'journal-entry-template-form' } }) }}
{{ form_widget(form.label, { 'attr': { 'class': 'form-control' } }) }} {{ form_errors(form.label) }}
{{ form_widget(form.journal, { 'attr': { 'class': 'form-select' } }) }} {{ form_errors(form.journal) }}
{{ form_widget(form.tips, { 'attr': { 'class': 'form-control' } }) }} {{ form_errors(form.tips) }}
{{ form_widget(form.entryLines) }}

Lignes d'écriture

Compte Description Débit Crédit Actions
Annuler
{{ form_end(form) }}
{% embed 'components/footer.html.twig' %}{% endembed %}
{% embed 'components/sideBar.html.twig' %}{% endembed %} {% endblock %} {% block javascripts_addition %} {% endblock %}