{% extends 'admin/layout.html.twig' %} {% form_theme form _self %} {% block _material_thicknesses_entry_row %}
{{ form_widget(form.value, { 'attr': {'class': 'w-full md:w-32 h-10 text-xs border-slate-200 rounded bg-slate-100'} }) }}
{{ form_errors(form.value)}}
{{ form_widget(form.price, { 'attr': {'class': 'w-full md:w-32 h-10 text-xs border-slate-200 rounded bg-slate-100'} }) }}
{{ form_errors(form.price)}}
{% endblock %} {% block body %}

Matériaux

Liste des matériaux

{% for material in materialsPerPage %} {% for thickness in material.thicknesses %} {% endfor %} {% endfor %}
Nom Colori Finition Epaisseur Prix(Euros) Action
{{ material.name }} {{ material.colour }} {{ material.finish }} {{ thickness.value }} {{ thickness.price | format_currency('EUR') }} delete
{# display navigation #}

Mise à jour

Ajouter un matériau

{{ form_start(form) }}
{{ form_label(form.name) }}
{{ form_widget(form.name, {'attr':{'class': 'w-full md:w-48 h-10 text-xs border-slate-200 rounded bg-slate-100'}}) }}
{{ form_errors(form.name) }}
{{ form_label(form.colour) }}
{{ form_widget(form.colour, {'attr':{'class': 'w-full md:w-48 h-10 text-xs border-slate-200 rounded bg-slate-100'}}) }}
{{ form_errors(form.colour) }}
{{ form_label(form.finish) }}
{{ form_widget(form.finish, {'attr':{'class': 'w-full md:w-48 h-10 text-xs border-slate-200 rounded bg-slate-100'}}) }}
{{ form_errors(form.finish) }}

Epaisseur du matériau

Ce matériau peux avoir plusieurs épaisseurs {{ form_end(form) }}

Mettre à jour à l'aide d'un fichier excel

warning Les données actuelles seront perdues et seront mises à jour.Cette action est irréversible.

{{ form_start(csvFileForm)}}
{{ form_label(csvFileForm.file) }}
{{ form_widget(csvFileForm.file) }}
{{ form_errors(csvFileForm.file) }}
{{ form_end(csvFileForm) }}
{% endblock %} {% block javascripts %} {% endblock %}