{% extends "base.html" %}
{% block title %}Spec {{ spec.id }}{% endblock %}
{% block content %}
Priority: {{ spec.priority or '—' }}
Scope: {{ spec.scope or '—' }}
Section: {{ spec.section or '—' }}
{% if spec.handle %}
Handle: {{ spec.handle }}
{% endif %}
{% if spec._tags_parsed %}
Tags:
{% for tag in spec._tags_parsed %}
{{ tag }}
{% endfor %}
{% endif %}
Version: {{ spec.version }}
Last changed: {{ spec.changed_at }} by {{ spec.changed_by }}
Change reason: {{ spec.change_reason }}
{% if spec.description %}
{{ 'PASSED' if assertion_run.overall_passed else 'FAILED' }}
— run at {{ assertion_run.run_at }} ({{ assertion_run.triggered_by }})
{% if assertion_run._results_parsed %}