{% extends "base.html" %} {% load static %} {% load customtags %} {% block head %} {% include 'head_content.html' with title="LyProX ยท Upload CSV" %} {% endblock head %} {% block content %}

Upload

Import multiple patients at once from a specifically formatted CSV table. See also below for an explanation of the expected columns.

{% if form.errors %}
{{ form.non_field_errors }}
{% endif %} {% if error %}
{{ error }}
{% endif %} {% if not upload_success %}
{% csrf_token %}
{% else %}
{{ num_new }} patients have been added and {{ num_skipped }} were skipped.
{% endif %}
{% include_md 'patients/data_description.md' %}
{% endblock content %}