{% extends "base.html" %} {% block body %} {% include "partials/playbook_card.html" with playbook=result.playbook %} {% load pygments_highlights %} {% load datetime_formatting %} {% load diff_result %}

Details

Result

{% for field, value in result.content.items %} {% endfor %}
Field Value
{{ field }} {% if field == "diff" %} {{ value | diff_result | format_data | safe }} {% elif field == "results" %} {% include "partials/nested_results.html" with results=value %} {% else %} {{ value | format_data | safe }} {% endif %}
{% endblock %}