14 lines
327 B
HTML
14 lines
327 B
HTML
<!DOCTYPE html>
|
|
<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 %}
|