{% extends "base.html" %} {% load static %} {% load core_tags %} {% block content %}
| 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)" }}
{{ task.subject }}
{% if task.error_message %}
Error Details:
{{ task.error_message }}
Task ID: #{{ task.id }}
Last Updated: {{ task.updated_at|date:"M j, H:i:s" }}
|
|||||
|
No bulk operations have been performed yet. |
|||||