{% extends 'workflows/base.html' %} {% load i18n %} {% load humanize %} {% block page_title %} {{ wizard.name }} {% endblock %} {% block header_nav_brand %} Workflows {% endblock header_nav_brand %} {% block details %}

{{ wizard.name }}

{% for s in steps %} {% if s.step.pk == current_step.step.pk %}

{{ s.step.description }}
{% elif s.visible %}

{{ s.step.description }}
{% endif %} {% endfor %}

{% if current_step %}{{ current_step.step.name }}{% else %}Complete!{% endif %}

{{ body_text | safe }}

{% if current_step and current_step.step.is_selfguided %} {% elif current_step %}

{% for check in current_step.checks %} {% endfor %}
Status Name Description
{{ check.check.name }} {{ check.check.description }}
{% endif %}
{% endblock %} {% block extra_javascript %}{% endblock %} {% block extra_css %}{% endblock %} {% block extra_script %}{% endblock %}