{% extends 'admin/base.html.twig' %}
{% block title %}Center{% endblock %}
{% block body %}
<section class="mb-3 mb-lg-5">
<div class="card card-table mb-4">
<div class="card-header">
<div class="card-heading">
<span>Détails du centre </span>
<a href="{{ path('app_center_edit',{'id': center.id }) }}">
<span class="badge rounded-pill me-2 p-2 bg-primary" style="float:right"> Modifier le centre</span>
</a>
<a href="{{ path('app_center_index') }}">
<span class="badge rounded-pill me-2 p-2 bg-success" style="float:right">Retour à la liste</span>
</a>
</div> a
</div>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ center.id }}</td>
</tr>
<tr>
<th>Nom</th>
<td>{{ center.name }}</td>
</tr>
<tr>
<th>Pays</th>
<td>{{ center.country }}</td>
</tr>
<tr>
<th>Description</th>
<td>{{ center.description }}</td>
</tr>
</tbody>
</table>
</section>
{% endblock %}