{% extends 'admin/base.html.twig' %}
{% block title %}Mesure{% 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>Mesure de {{ mesure.bilan.member}} </span>
<div style="float:right">
<a href="{{ path('app_bilan_show',{'id': mesure.bilan.id}) }}">
<span class="badge rounded-pill me-2 p-2 bg-primary">Retour au bilan principal</span>
</a>
<a href="{{ path('app_mesure_edit', {'id': mesure.id}) }}">
<span class="badge rounded-pill me-2 p-2 bg-success">Modifier</span>
</a>
</div>
</div>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ mesure.id }}</td>
</tr>
<tr>
<th>CreatedAt</th>
<td>{{ mesure.createdAt ? mesure.createdAt|date('Y-m-d H:i:s') : '' }}</td>
</tr>
<tr>
<th>UpdatedAt</th>
<td>{{ mesure.updatedAt ? mesure.updatedAt|date('Y-m-d H:i:s') : '' }}</td>
</tr>
<tr>
<th>Weight</th>
<td>{{ mesure.weight }}</td>
</tr>
<tr>
<th>LeanBodeyMass</th>
<td>{{ mesure.leanBodyMass }}</td>
</tr>
<tr>
<th>BodyFat</th>
<td>{{ mesure.bodyFat }}</td>
</tr>
<tr>
<th>CollarSize</th>
<td>{{ mesure.collarSize }}</td>
</tr>
<tr>
<th>ChestSize</th>
<td>{{ mesure.chestSize }}</td>
</tr>
<tr>
<th>WaistSize</th>
<td>{{ mesure.waistSize }}</td>
</tr>
<tr>
<th>BellyCircumference</th>
<td>{{ mesure.bellyCircumference }}</td>
</tr>
<tr>
<th>ButtockCircumference</th>
<td>{{ mesure.buttockCircumference }}</td>
</tr>
<tr>
<th>HipCircumference</th>
<td>{{ mesure.hipCircumference }}</td>
</tr>
<tr>
<th>TighCircumference</th>
<td>{{ mesure.tighCircumference }}</td>
</tr>
<tr>
<th>ArmCircumference</th>
<td>{{ mesure.armCircumference }}</td>
</tr>
<tr>
<th>AnkelCircumference</th>
<td>{{ mesure.ankleCircumference }}</td>
</tr>
<tr>
<th>Active</th>
<td>{{ mesure.active ? 'Yes' : 'No' }}</td>
</tr>
</tbody>
</table>
</section>
{% endblock %}