{% extends 'admin/model/details.html' %} {# Auto-refresh the run detail page while the playbook is still running so the captured log and final status appear on their own. The script is only emitted while status == 'running', so reloading stops the moment the run finishes. #} {% block navlinks %} {{ super() }} {% if model.status == 'running' %}
{% endif %} {% endblock %} {% block tail %} {{ super() }} {% if model.status == 'running' %} {% endif %} {% endblock %}