{% extends "base.html" %} {% load static %} {% load core_tags %} {% block content %}

Bulk Operations Log

Back to Search
{% for task in bulk_tasks %} {% empty %} {% endfor %}
Type Status Progress Counts Created Details
{{ task.get_task_type_display }} {% if task.status == 'processing' %} In Progress {% elif task.status == 'completed' %} Completed {% elif task.status == 'failed' %} Failed {% else %} {{ task.get_status_display }} {% endif %}
{% if task.total_count > 0 %} {% with success_percent=task.success_count|add:task.fail_count|mul:100|div:task.total_count %}
{% endwith %} {% else %}
{% endif %}
{{ task.success_count }} success{{ task.fail_count }} fail{{ task.total_count }} total
{{ task.created_at|date:"M j, Y" }}
{{ task.created_at|date:"H:i" }}
{{ task.message_body|default:"(No content)" }}
{% if task.subject %}
{{ task.subject }}
{% endif %}
{% if task.error_message %}
Error Details:
{{ task.error_message }}
{% endif %}
Task ID: #{{ task.id }}
Last Updated: {{ task.updated_at|date:"M j, H:i:s" }}

No bulk operations have been performed yet.

{% if bulk_tasks.paginator.num_pages > 1 %} {% endif %}
{% endblock %}