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.
inventory-app/templates/upload.html

15 lines
347 B

{% extends "main.html" %}
{% block title %} Upload {% endblock %}
{% block content %}
<form action="/upload/catalog" method="post" enctype="multipart/form-data">
<h3>Catalog Import</h3>
<fieldset role="group">
<input type="file" name="file" />
<input type="submit" value="Upload">
</fieldset>
</form>
{% endblock %}

Powered by TurnKey Linux.