{% extends 'layout.html.twig' %} {% block title %}Patient index{% endblock %} {% block content %}

Patient index

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