{% extends "base.html" %} {% block title %}Reports — Finite State Report Kit{% endblock %} {% block content %}

Generated Reports

{% if history %}

Run History

{% for run in history %}
{% if run.scope and (run.scope.project_filter or run.scope.folder_filter) %}
{% if run.scope.project_filter %} Project: {{ run.scope.project_name or run.scope.project_filter }} {% endif %} {% if run.scope.folder_filter %} Folder: {{ run.scope.folder_filter }} {% endif %}
{% endif %}
{{ run.id }} {{ run.timestamp_display }} {{ run.domain }} {{ run.output_dir }} {% if run.log_file %} Log {% endif %}
{% for r in run.recipes %} {{ r }} {% endfor %}
{% if run.file_groups %}
{% for group in run.file_groups %} {% if group.html %}

HTML {{ group.html.name }}

{{ group.html.path }} {{ group.html.size_kb }} KB {{ group.html.age }}
{% if group.ancillary %}
{% for f in group.ancillary %}
{{ f.format | upper }} {{ f.size_kb }} KB Download
{% endfor %}
{% endif %}
{% else %}

{{ group.name }}

{{ group.age }}
{% for f in group.ancillary %}
{{ f.format | upper }} {{ f.size_kb }} KB Download
{% endfor %}
{% endif %} {% endfor %}
{% else %}

Report files have been removed from disk.

{% endif %}
{% endfor %}
{% endif %} {% if report_groups %}

Current Output Directory

{{ output_dir }}
{% for group in report_groups %} {% if group.html %}

HTML {{ group.html.name }}

{{ group.html.path }} {{ group.html.size_kb }} KB {{ group.html.age }}
{% if group.ancillary %}
{% for f in group.ancillary %}
{{ f.format | upper }} {{ f.size_kb }} KB Download
{% endfor %}
{% endif %}
{% else %} {# No HTML — show ancillary files as a standalone group #}

{{ group.name }}

{{ group.age }}
{% for f in group.ancillary %}
{{ f.format | upper }} {{ f.size_kb }} KB Download
{% endfor %}
{% endif %} {% endfor %}
{% elif not history %}

No reports found.

Run some recipes from the Dashboard to generate reports.

{% endif %}
{% endblock %}