{% extends 'base.html.twig' %}
{% block title %}Calculs{% endblock %}
{% block body %}
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<h1>Liste des calculs</h1>
<table class="table">
<thead>
<tr>
<th>Titre</th>
<th>Adresse</th>
<th>Date/Horaire <br/> <small>choisi pour le calcul</small></th>
<th>Statut</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for computing in computings %}
<tr>
<td>{{ computing.Title }}</td>
<td>{{ computing.Addresse }}</td>
<td>{% if computing.departureDateTime is not null %}{{ computing.departureDateTime.format('d M à H:i') }}{% endif %}</td>
<td>
<span class="badge rounded-pill {{ computing.getStatusDisplayCatergory }} font-size-13">{{ computing.getStatusTextInfo }}</span>
<td>
<a href="{{ path('app_computing_show', {'id': computing.id}) }}" title="Voir les résultats"><i style="font-size: 24px" class="mdi mdi-format-list-bulleted-square"></i></a>
<a href="{{ path('app_computing_edit', {'id': computing.id}) }}" title="Editer"><i style="font-size: 24px" class="mdi mdi-square-edit-outline"></i></a>
<a href="{{ path('app_computing_compute', {'id': computing.id}) }}" title="Lancer le calcul"><i style="font-size: 24px" class="mdi mdi-settings-transfer-outline"></i></a>
<form style="display: inline-block" method="post" action="{{ path('app_computing_delete', {'id': computing.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');" id=deleteForm_{{ computing.id }} name="deleteForm_{{ computing.id }}">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ computing.id) }}">
<a href="javascript: if(confirm('Are you sure you want to delete this item?') == true){ document.forms['deleteForm_{{ computing.id }}'].submit();}" ><i style="font-size: 24px" class="mdi mdi-delete-forever"></i></a>
</form>
</td>
</tr>
{% else %}
<tr>
<td colspan="7">Aucun calcul trouvé</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_computing_new') }}" class="btn btn-primary">Générer un calcul</a>
</div>
</div>
</div>
</div>
{% endblock %}