22 lines
445 B
HTML
22 lines
445 B
HTML
<!DOCTYPE html>
|
|
{% extends 'head.html' %}
|
|
{% include 'header.html' %}
|
|
{% include 'logo.html' %}
|
|
{% block content %}
|
|
|
|
<h3> If you'd like to upload a CSV. Please do so here:<h3>
|
|
<p></p>
|
|
<form method="post" action="" enctype="multipart/form-data">
|
|
<p><input type="file" name="file"></p>
|
|
<p><input type="submit" value="Submit CSV"></p>
|
|
</form>
|
|
|
|
{% if table %}
|
|
{% include 'table.html' %}
|
|
{% else %}
|
|
<p></p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|