{% extends "base.html" %} {% block title %}Test: {{ proc.id }}{% endblock %} {% block content %}

{{ proc.title }}

ID: {{ proc.id }}
Type: {{ proc.type or '—' }}
Assertion count: {{ proc.assertion_count or 0 }}
Last status: {% if proc.last_execution_status %} {{ proc.last_execution_status }} {% else %}—{% endif %}
Version: {{ proc.version }}
Last changed: {{ proc.changed_at }} by {{ proc.changed_by }}
{% if proc.content %}

Procedure

{{ proc.content }}
{% endif %}

Version History ({{ history|length }} versions)

{% for h in history %} {% endfor %}
vStatusAssertionsChanged atByReason
{{ h.version }} {{ h.last_execution_status or '—' }} {{ h.assertion_count or 0 }} {{ h.changed_at }} {{ h.changed_by }} {{ h.change_reason }}
{% endblock %}