{% extends 'admin/layout.html.twig' %} {% form_theme form 'bootstrap_4_layout.html.twig' %} {% block content %}

Modification d'un distributeur

Une opportuné s'offre à nous ! Ne laissons pas filé ce filon...
{{ form_start(form) }}
Indentification distributeur Création du code client
{{ form_label(form.client, 'Client') }} {{ form_row(form.client) }}
{% if is_granted('ROLE_SUPER_ADMIN') %}
{{ form_label(form.code, 'Numéro') }} {{ form_row(form.code) }}
{% else %}
{{ form_label(form.code, 'Numéro') }} {{ form_row(form.code,{'attr':{'disabled':'disabled'}}) }}
{% endif %} {% if is_granted('ROLE_SUPER_ADMIN') %}
{{ form_label(form.type, 'Type') }} {{ form_row(form.type) }}
{% else %}
{{ form_label(form.type, 'Type') }} {{ form_row(form.type,{'attr':{'disabled':'disabled'}}) }}
{% endif %}
{{ form_label(form.rent, 'Formule') }} {{ form_row(form.rent) }}
{% if is_granted('ROLE_SUPER_ADMIN') %}
{{ form_label(form.setup_at, 'Date d\'installation') }} {{ form_row(form.setup_at) }}
{% else %}
{{ form_label(form.setup_at, 'Date d\'installation') }} {{ form_row(form.setup_at,{'attr':{'disabled':'disabled'}}) }}
{% endif %}
Localisation Distributeur
{{ form_label(form.addressSetup, 'Adresse') }} {{ form_row(form.addressSetup,{'attr':{'value': distributeur.addressSetup|nzo_decrypt}}) }}
{{ form_label(form.City, 'Ville') }} {{ form_row(form.City) }}
{{ form_label(form.postalCode, 'Code Postal') }} {{ form_row(form.postalCode) }}
{{ form_row(form.submit,{'label':'Enregistrer le distributeur !','attr':{'class':'btn-success btn-form mr-2'}}) }} {% if is_granted('ROLE_ADMIN') %} {{ form_row(form.submitDelete,{'label':'Supprimer le distributeur','attr':{'class':'btn-danger btn-form','onclick':'return confirm("Voulez-vous supprimer ce distributeur ?")'}}) }} {% endif %} {{ form_row(form._token) }}
{{ form_end(form,{'render_rest': false}) }}
{% endblock content %}