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

{{ proc.title }}

ID: {{ proc.id }}
Type: {{ proc.type or '—' }}
Version: {{ proc.version }}
Last changed: {{ proc.changed_at }} by {{ proc.changed_by }}
{% if proc._variables_parsed %}

Variables

{% for k, v in proc._variables_parsed.items() %} {% endfor %}
VariableValue
{{ k }} {{ v }}
{% endif %} {% if proc._steps_parsed %}

Steps

{% for step in proc._steps_parsed %} {% endfor %}
PhaseTitleActions
{{ step.phase }} {{ step.title }} {% if step.actions %}{{ step.actions|join(', ') }}{% endif %}
{% endif %} {% if proc._known_failure_modes_parsed %}

Known Failure Modes

{% endif %}

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

{% for h in history %} {% endfor %}
vChanged atByReason
{{ h.version }} {{ h.changed_at }} {{ h.changed_by }} {{ h.change_reason }}
{% endblock %}