{% extends 'base_backend.html.twig' %} {% block body %}

Paramétrage Client

Liste des catégories client
{{ form_start(form) }}
{{ form_widget(form.categorie , {'attr':{'class':'form-control', 'placeholder':'Intitule de catégorie' }} ) }} {##}
{{ form_end(form) }}
{##} {% for cat in categories|reverse %} {% endfor %}
IDentifiantNom du catégorie Catégorie comptable Date de création Action
{{ cat.categorie }} {% if(cat.catcomp) %} {{ cat.catcomp.tva }} % (TVA) {{ render(controller('BackendBundle:Utilisateur:modifier_CatComptable', { 'nom': cat.categorie ,'idcc' : cat.catcomp.cbmarq } )) }} {% else %} Ajouter TVA {% endif %} {{ cat.cbcreation|date('d-m-Y')}}
{{ render(controller('BackendBundle:Utilisateur:modifier_Categorie', {'idcat' : cat.cbmarq } )) }}
{% endblock %}