{% extends "base.html" %} {% block title %}Runs - Capsula Server{% endblock %} {% block content %} {% if runs.is_empty() %}

No runs found.{% match vault %}{% when Some with (_v) %} Try viewing all runs.{% when None %}{% endmatch %}

{% else %}
{% for run in runs %} {% endfor %}
Timestamp Name Command Vault Duration Exit Code
{{ run.timestamp.format("%Y-%m-%d %H:%M:%S") }} {{ run.name }} {{ run.command|format_command }} {{ run.vault }} {% match run.duration_ms %} {% when Some with (ms) %} {{ ms }}ms {% when None %} - {% endmatch %} {% match run.exit_code %} {% when Some with (code) %} {{ code }} {% when None %} - {% endmatch %}
{% if total_pages > 1 %} {% endif %} {% endif %} {% endblock %}