{% 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 %} Playbook label 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 {{ current_page_results }} of {{ data.count }} {% if data.first %} {% else %} {% endif %} {% if data.previous %} {% else %} {% endif %} {% if data.next %} {% else %} {% endif %} {% if data.last %} {% else %} {% endif %} {% endif %} {% for playbook in data.results %} {% include "partials/playbook_card.html" %} {% endfor %} {% endblock %}