{% extends 'base.html' %} {% block title %}Tasks | Cilvera{% endblock title %} {% block content %}

Tasks {{ page_obj.paginator.count }}

{% for task in tasks %} {% empty %} {% endfor %}
Title Customer Status Assignee Due date
{{ task.title }} {{ task.customer.full_name }} {{ task.get_status_display }} {{ task.assignee|default:'-' }} {{ task.due_date|default:'-' }}
No tasks found.
{% include 'shared/pagination.html' %}
{% endblock content %}