Files
NP_CSM_Tool/app/templates/csv.html

22 lines
445 B
HTML
Raw Normal View History

2023-03-02 17:56:31 -05:00
<!DOCTYPE html>
{% extends 'head.html' %}
{% include 'header.html' %}
{% include 'logo.html' %}
2023-03-02 17:56:31 -05:00
{% 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">
2023-03-02 17:56:31 -05:00
<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 %}
2023-03-02 17:56:31 -05:00
{% endblock %}