{% extends "base.html" %} {% block body %} {% if not static_generation %} {% load datetime_formatting %} {% if search_query %} Search, sort and filter Clear filters {% else %} Search, Sort and Filter by date {% endif %} Search Playbook name Playbook path Playbook status {% for value, text in search_form.status.field.choices %} {% if value in search_form.status.data %} {% else %} {% endif %} {{ value }} {% endfor %} Sort by Started: ascending | descending Ended: ascending | descending Duration: ascending | descending Filter by date Last 30 days Last 7 days Last 24 hours Last 60 minutes {% endif %} {% for playbook in playbooks %} {% include "partials/playbook_card.html" %} {% endfor %} {% endblock %}