{% extends 'include/base.html' %} {% block title %}Pacientes{% endblock title %} {% block content %}

Pacientes

Nombre
DNI
Acciones
{% if patients %} {% for single_patient in patients %}
{{single_patient.name}} {{single_patient.surname}}
{{single_patient.dni}}
settings medication
{% endfor %} {% endif %}
{% endblock content%} {% block modals %} {% endblock modals %} {% block scripts %} {% endblock scripts %}