{% extends "base.html" %} {% block title %}Runs - Capsula Server{% endblock %} {% block content %}
No runs found.{% match vault %}{% when Some with (_v) %} Try viewing all runs.{% when None %}{% endmatch %}
| 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 %} |