2024-02-15 18:59:09 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_widget(form.submit) }}
|
2024-04-12 16:30:36 +02:00
|
|
|
<a class="btn btn-secondary" onClick="closeModal();">Annuler</a>
|
2024-02-15 18:59:09 +01:00
|
|
|
|
|
|
|
{% if mode=="update" %}
|
|
|
|
<a href="{{ path('app_scrumsprint_delete',{'id':scrumsprint.id}) }}"
|
|
|
|
class="btn btn-danger float-right"
|
|
|
|
data-method="delete"
|
|
|
|
data-confirm="Êtes-vous sûr de vouloir supprimer cet entregistrement ?">
|
|
|
|
Supprimer
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
{% 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 %}
|
|
|
|
|
|
|
|
{{ form_row(form.name) }}
|
|
|
|
{{ form_row(form.giteamilestone) }}
|
2024-04-12 16:30:36 +02:00
|
|
|
{{ form_row(form.closed) }}
|
2024-02-15 18:59:09 +01:00
|
|
|
{{ form_end(form) }}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block localjavascript %}
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("#scrumsprint_name").focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
function closeModal() {
|
2024-04-12 16:30:36 +02:00
|
|
|
window.parent.$("#mymodalsprint").modal('hide');
|
2024-02-15 18:59:09 +01:00
|
|
|
}
|
|
|
|
{% endblock %}
|