{% extends "base.html" %} {% block title %}Dashboard ยท MIEM Employees{% endblock %} {% block content %}
Active
{{ counts.active }}
Dismissed
{{ counts.dismissed }}
Runs
{{ counts.runs }}
Errors
{{ counts.errors }}

Latest runs

{% for run in runs %} {% endfor %}
IDStatusParsedErrorsStarted
{{ run.id }}{{ run.status }}{{ run.parsed_count }}{{ run.error_count }}{{ run.started_at }}
{% endblock %}