{% extends "base.html" %} {% block title %} Upload Data File {% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% for category, msg in messages %} {% endfor %} {% endwith %}
{% if uuid %}
Success
File {{ filename }} uploaded

UUID: {{ uuid }}

Download
{% endif %}
{{ form.hidden_tag() }}
Upload Data File
{{ form.file(class="custom-file-input", accept=".xlsx") }}
{% endblock %}