{% extends "base.html" %} {% block content %}

The Armory

The Hall of Tempered Blades — every successful forging you have completed.

{% if tempered %}
{% for ex in tempered %}
{{ ex.agent_name }} v{{ ex.agent_version }}
{{ ex.trace_id }}
TEMPERED
{{ ex.finished_at.strftime('%Y-%m-%d %H:%M') if ex.finished_at else ex.started_at.strftime('%Y-%m-%d %H:%M') }}
ACTIONS
{{ ex.n_proposed_actions }}
VIOLATIONS
{{ ex.n_violations }}
{% endfor %}
{% else %}
🛡️
No tempered blades yet

Successfully complete a forging on the Anvil and it will appear here as a proven, tempered blade.

Go to the Anvil →
{% endif %}
{% endblock %}