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
605 B
21 lines
605 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Batch Upload Chemicals</h2>
|
|
<a href="https://git.junickim.me/junikimm717/walker-database/raw/master/validate.py"> Source Code with required type definitions </a>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
<label for="csv"> Input file (tab delimited text file) </label>
|
|
<input type="file" name="csv">
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
{% if invalid %}
|
|
<p style="color: red;">Data Points are Incorrectly added: {{invalid}}</p>
|
|
{% endif %}
|
|
|
|
{% if success %}
|
|
<p style="color: green;">Success!</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|