{% extends "base.html" %} {% block title %}Overview - FailCore{% endblock %} {% block content %}

Overview

Total Runs

{{ stats.total_runs }}

Traces Available

{{ stats.traces_available }}

Recent Runs

{% if recent_runs %} {% for run in recent_runs %} {% endfor %}
Run ID Command Date Trace Actions
{{ run.name.split('_')[0] }} {{ run.name.split('_')[2] if run.name.split('_')|length == 3 else 'unknown' }} {{ run.date }} {% if run.has_trace %} {% else %} {% endif %} {% if run.has_trace %} View Trace {% endif %}
{% else %}

No runs found. Run failcore sample to create your first execution.

{% endif %}
View All Runs →
{% endblock %}