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

Generated Reports

{% if history %}

Run History

{% for run in history %}
{{ run.id }} {{ run.timestamp_display }} {{ run.domain }} {{ run.output_dir }}
{% for r in run.recipes %} {{ r }} {% endfor %}
{% if run.files %}
{% for f in run.files %}

{{ f.name }}

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

Files no longer available on disk.

{% endif %}
{% endfor %}
{% endif %} {% if report_files %}

Current Output Directory

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

{{ f.name }}

{{ f.path }} {{ f.size_kb }} KB {{ f.age }}
{% endfor %}
{% elif not history %}

No reports found.

Run some recipes from the Dashboard to generate reports.

{% endif %}
{% endblock %}