{% extends "layout.html" %} {% import 'macros.html' as macros %} {% block content %}
{% if metas %} {% call macros.render_form(search_form, action_url=url_for("show_all_files"), button=false) %} {{ search_form.csrf_token }} {{ macros.render_search_field(search_form.search, placeholder=search_text) }} {% endcall %}
{% for meta in metas %} {% endfor %}
Filename Tags Uploaded Last Run
{{ meta.filename }} {% for tag in meta.tags %} {{ tag }} {% endfor %} {{ meta.upload_date }} {% if meta.filename in running %} Running {% else %} {{ meta.last_run_date }} {% endif %}
{% else %} No files are uploaded. Click here to upload a new file. {% endif %}
{% endblock %}