nineskeletor/templates/Pin/edit.html.twig

72 lines
2.2 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 pin
{% else %}
Modification pin
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_pin') }}>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_pin_delete',{'id':pin.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
<div style="width:90px; margin:auto;">
{% set image= "noimage.png" %}
{% if pin.image %}
{% set image= pin.image %}
{% endif %}
<img id="pin_image_img" src="\{{appAlias}}\uploads\pin\{{ image }}" style="width:90px;">
{{ form_widget(form.image) }}
<bouton class="btn btn-info" style="margin:auto;margin-top:10px; margin-bottom:15px;" onClick="ModalLoad('mymodallarge','Pin','{{ path('app_crop01', {"type": "pin", "reportinput": "#pin_image" }) }}');" title='Ajouter une Image'>Modifier</bouton>
</div>
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.name) }}
{{ form_row(form.subname) }}
{{ form_row(form.description) }}
2023-01-10 11:13:28 +01:00
</div>
</div>
{{ form_end(form) }}
{% endblock %}
2023-02-16 17:03:53 +01:00