You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
572 B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>Batch Upload Chemicals</h2>
  4. <a href="https://git.junickim.me/junikimm717/walker-database/raw/master/validate.py"> Source Code with required type definitions </a>
  5. <form method="post" enctype="multipart/form-data">
  6. <label for="csv">CSV: </label>
  7. <input type="file" name="csv">
  8. <input type="submit" value="Submit">
  9. </form>
  10. {% if invalid %}
  11. <p style="color: red;">Data Points are Incorrectly added: {{invalid}}</p>
  12. {% endif %}
  13. {% if success %}
  14. <p style="color: green;">Success!</p>
  15. {% endif %}
  16. {% endblock %}