{% extends "base.html" %} {% block content %}

Upload Test Reports

Medical test reports and diagnostic images can provide valuable insights for accurate diagnosis and treatment planning.

Do you want to upload test reports for this patient?

{% if error %} {{ error }} {% endif %}
{% if patient_data.previous_tests and patient_data.previous_tests|length > 0 %}

{{ patient_data.previous_tests|length }} report {% if patient_data.previous_tests|length != 1 %} s {% endif %} uploaded

    {% for report in patient_data.previous_tests %} {% if report.filename %}
  • {{ report.filename }}
  • {% else %}
  • [Unnamed file]
  • {% endif %} {% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}