Bonjour,
Dr. {{user.first_name}} {{user.last_name}}
{{user.specialite}}
Patients
20% higher than last year.
{% include "appointment_list.html" %}
Patients Type
15% male patients decreased than last month.
30% female patients increase than last month.
60% kid patients increase than last month.
Les Rendez-vous
{% for appointment in appointments %}
{% endfor %}
{{ appointment.patient.get_full_name }}.
{% comment %}{{ appointment.motif }}.
{% endcomment %}
{% if appointment.status == 'accepted' and appointment.date|date:"Y-m-d" > today|date:"Y-m-d" %}
{% endif %}
{% if appointment.status == 'rejected' and appointment.date|date:"Y-m-d" > today|date:"Y-m-d" %}
Accepter
{% endif %}
{% if appointment.status == 'En attente' and appointment.date|date:"Y-m-d" > today|date:"Y-m-d" %}
Accepter
{% endif %}
{% if appointment.status == 'pending' and appointment.date|date:"Y-m-d" > today|date:"Y-m-d" %}
Accepter
{% endif %}
Appointments
33% higher than last year.