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

Upload Dataset

Upload a CSV table of patients by specifiying a GitHub repository URL, a revision (branch or tag) and a path to the CSV file.

Note that the import may take a few minutes to complete.

{% if form.non_field_errors %}

{{ form.non_field_errors }}

{% endif %} {% if error %}

{{ error }}

{% endif %}
{{ form.git_repo_url }} {% if form.errors.git_repo_url %} {{ form.errors.git_repo_url }} {% endif %}
{{ form.revision }} {% if form.errors.revision %} {{ form.errors.revision }} {% endif %}
{{ form.data_path }} {% if form.errors.data_path %} {{ form.errors.data_path }} {% endif %}
{% block "js" %} {% endblock "js" %} {% endblock content %}