{% extends 'generic/object_list.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% block page-header %}
{# Breadcrumbs #}

{% trans 'Background Tasks' %}

{% endblock page-header %} {% block title %}{{ status|capfirst }} {% trans "tasks in " %}{{ queue.name }}{% endblock %} {% block tabs %} {% endblock tabs %} {% block content %} {# Object list tab #}
{# Object table controls #} {% include 'inc/table_controls_htmx.html' with table_modal="ObjectTable_config" %}
{% csrf_token %} {# "Select all" form #} {% if table.paginator.num_pages > 1 %}
{% if 'bulk_edit' in actions %} {% bulk_edit_button model query_params=request.GET %} {% endif %} {% if 'bulk_delete' in actions %} {% bulk_delete_button model query_params=request.GET %} {% endif %}
{% endif %}
{% csrf_token %} {# Objects table #}
{% include 'htmx/table.html' %}
{# /Objects table #} {# Form buttons #}
{% block bulk_buttons %} {% if 'bulk_edit' in actions %} {% bulk_edit_button model query_params=request.GET %} {% endif %} {% if 'bulk_delete' in actions %} {% bulk_delete_button model query_params=request.GET %} {% endif %} {% endblock %}
{# /Form buttons #}
{# /Object list tab #} {% endblock content %}