nineskeletor/templates/Childheader/edit.html.twig

63 lines
1.7 KiB
Twig
Raw Normal View History

2023-02-16 17:03:53 +01:00
2023-01-10 11:13:28 +01:00
{% extends 'base.html.twig' %}
{% block body %}
{{ form_start(form) }}
<h1 class="page-header">
2023-02-16 17:03:53 +01:00
{% if mode=="submit" %}
Création tag
{% else %}
Modification tag
2023-01-10 11:13:28 +01:00
{% endif %}
</h1>
2023-02-16 17:03:53 +01:00
{{ form_widget(form.submit) }}
<a class="btn btn-secondary" href={{ path('app_child_update',{catparent:catparent,idparent:idparent,idchild:idchild}) }}>Annuler</a>
2023-01-10 11:13:28 +01:00
{% if mode=="update" %}
2023-02-16 17:03:53 +01:00
<a href={{ path('app_childheader_delete',{catparent:catparent,idparent:idparent,idchild:idchild,id:childheader.id}) }}
class="btn btn-danger float-right"
2023-01-10 11:13:28 +01:00
data-method="delete" data-csrf="_token:{{ 'csrf' }}"
2023-02-16 17:03:53 +01:00
data-confirm="Êtes-vous sûr de vouloir supprimer cet enregistrement ?">
2023-01-10 11:13:28 +01:00
Supprimer
</a>
2023-02-16 17:03:53 +01:00
{% endif %}
<br><br>
2023-01-10 11:13:28 +01:00
{% if app.session.flashbag.has('error') %}
<div class='alert alert-danger' style='margin: 5px 0px'>
<strong>Erreur</strong><br>
{% for flashMessage in app.session.flashbag.get('error') %}
{{ flashMessage }}<br>
{% endfor %}
</div>
{% endif %}
{% if app.session.flashbag.has('notice') %}
<div class='alert alert-info' style='margin: 5px 0px'>
<strong>Information</strong><br>
{% for flashMessage in app.session.flashbag.get('notice') %}
{{ flashMessage }}<br>
{% endfor %}
</div>
{% endif %}
2023-02-16 17:03:53 +01:00
2023-01-10 11:13:28 +01:00
<div class="card">
<div class="card-header">
<i class="fa fa-pencil-alt fa-fw"></i> Informations
</div>
<div class="card-body">
2023-02-16 17:03:53 +01:00
{{ form_row(form.credit) }}
2023-01-10 11:13:28 +01:00
</div>
</div>
2023-02-16 17:03:53 +01:00
{{ form_end(form) }}
{% endblock %}
2023-01-10 11:13:28 +01:00