{% extends 'html/base.html' %} {% load static %} {% block title %} Mettre à jour Rapport Général {% endblock %} {% block content %}

Mettre à jour Rapport Général

Date de consultation : {{ general_report.date }}

Patients à suivre : {% for patient_to_follow in general_report.patient_to_follow.all %} {{ patient_to_follow.first_name }} {{ patient_to_follow.last_name }}, {% endfor %}

{% csrf_token %}

{{ form.sites.label }} :

{{ form.sites }}

{{ form.age_min.label }} :

{{ form.age_min }}

{{ form.age_max.label }} :

{{ form.age_max }}

{{ form.date.label }} :

{{ form.date }}

{{ form.patologies.label }} :

{{ form.patologies }}

{{ form.number_of_patients_consulted.label }} :

{{ form.number_of_patients_consulted }}

{{ form.number_of_women.label }} :

{{ form.number_of_women }}

{{ form.number_of_men.label }} :

{{ form.number_of_men }}

{{ form.patient_to_follow.label }} :

{{ form.patient_to_follow }}

{{ form.diagnosis.label }} :

{{ form.diagnosis }}

{{ form.referred_patient.label }} :

{{ form.referred_patient }}

{{ form.recommendations.label }} :

{{ form.recommendations }}

{% if messages %}
{% endif %} {% endblock %}