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

Generated Reports

{{ output_dir }}
{% if report_files %}
{% for f in report_files %}

{{ f.name }}

{{ f.path }} {{ f.size_kb }} KB {{ f.age }}
{% endfor %}
{% else %}

No HTML reports found.

Run some recipes from the Dashboard to generate reports.

{% endif %}
{% if history %}

Run History

{% for run in history %}
{{ run.id }} {{ run.timestamp }} {{ run.domain }}
{% for r in run.recipes %} {{ r }} {% endfor %}
{% if run.files %}
{% for f in run.files %} {{ f.recipe }} ({{ f.format }}) {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}