{% extends 'base.html.twig' %} {% block title %}Patient index{% endblock %} {% block body %}

Patient index

{% for patient in patients %} {% else %} {% endfor %}
Id NumSS Nom Prenom DateNaissance Sexe actions
{{ patient.id }} {{ patient.NumSS }} {{ patient.nom }} {{ patient.prenom }} {{ patient.dateNaissance ? patient.dateNaissance|date('Y-m-d') : '' }} {{ patient.sexe }} show edit
no records found
Create new {% endblock %}