{% extends 'base.html' %} {% block title %}File Browser{% endblock %} {% block content %}

File Browser

Input Files (Output Directory)

{% if output_files %}
{% for file in output_files %} {{ file }} {% endfor %}
{% else %}

No files found in the output directory.

{% endif %}

Generated Files

{% if generated_files %}
{% for file in generated_files %} {{ file }} {% endfor %}
{% else %}

No files found in the generated directory.

{% endif %}
{% endblock %}