{% extends "admin/base_site.html" %} {% load static django_rq %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %}

Are you sure?

{% endblock %} {% block content %}

Are you sure you want to {{ action|capfirst }} the following jobs from {{ queue.name }}?

{% csrf_token %}
{% for job in jobs %} {% if job.missing %} {% else %} {% endif %} {% endfor %}
ID
Created
Enqueued
Ended
Status
Callable
{{ job.id }} (no longer available) {{ job.id }} {% if job.created_at %}{{ job.created_at|timestamp_tooltip }}{% endif %} {% if job.enqueued_at %}{{ job.enqueued_at|timestamp_tooltip }}{% endif %} {% if job.ended_at %}{{ job.ended_at|timestamp_tooltip }}{% endif %} {{ job|job_status }} {{ job|show_func_name }}
{% for job_id in job_ids %} {% endfor %}
{% endblock %}