A few more csv changes that are working. Now have to consolidate some of the pages for smoother navigation. Maybe have it be a single page web app?

This commit is contained in:
Norm Rasmussen
2023-03-03 20:47:37 -05:00
parent 074819ce8f
commit 137b1e632a
4 changed files with 656 additions and 14 deletions

View File

@ -1,14 +1,21 @@
<!DOCTYPE html>
{% include 'logo.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="multipar/form-data">
<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 %}