{{ form_start(form) }} {{ form_row(form._token) }}

Information générales

{{ form_label(form.nom_mat, "Nom matière" , {'label_attr': {'class': 'col-sm-12 col-form-label'}}) }}
{{ form_widget(form.nom_mat) }}
{{ form_label(form.code_mat, "Code" , {'label_attr': {'class': 'col-sm-12 col-form-label'}}) }}
{{ form_widget(form.code_mat) }}
{{ form_label(form.coeff_mat, "Coefficient" , {'label_attr': {'class': 'col-sm-12 col-form-label font-weight-bold'}}) }}
{{ form_widget(form.coeff_mat) }}
{{ form_label(form.prix_h_mat, "Prix par heure" , {'label_attr': {'class': 'col-sm-12 col-form-label'}})}}
{{ form_widget(form.prix_h_mat) }}
{{ form_label(form.volume_max_h_mat, "Volume maximun d'heure" , {'label_attr': {'class': 'col-sm-12 col-form-label'}})}}
{{ form_widget(form.volume_max_h_mat) }}
{{ form_label(form.enseignant, "Enseignant" , {'label_attr': {'class': 'col-sm-12 col-form-label'}})}}
{{ form_widget(form.enseignant) }}
{{ form_label(form.classe, "Classe" , {'label_attr': {'class': 'col-sm-12 col-form-label font-weight-bold'}})}}
{{ form_widget(form.classe) }}
Back to list
{{ form_end(form) }}