{% extends 'admin_base.html' %} {% load custom_filters %} {% block content %}

Task Management

Monitor and manage all tasks in one place

{% if request.user.is_superuser %} Create Task {% endif %}
{% if request.user.is_superuser %}

Not Started

{{ status_counts.not_started|default:0 }}

In Progress

{{ status_counts.in_progress|default:0 }}

Completed

{{ status_counts.completed|default:0 }}

Cancelled

{{ status_counts.cancelled|default:0 }}

{% endif %}

Filter Tasks

Task List

{{ page_obj.paginator.count }} tasks found

{% if page_obj.has_other_pages %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} tasks
{% endif %}
{% if not request.user.is_superuser %} {% endif %} {% if request.user.is_superuser %} {% endif %} {% endblock %}