{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Welcome, {{ request.user.first_name|default:request.user.username }}

Total Assigned

{{ total_assigned }}

In progress

{{ total_in_progress }}

Closed

{{ total_closed }}

{% if total_bookings %}
{% for booking in total_bookings %} {% endfor %}
# Customer Service Vertical Subcategory Comments Status Booked On
{{ forloop.counter }} {{ booking.customer.first_name }} {{ booking.customer.last_name }} {{ booking.service.name }} {{ booking.vertical.name }} {{ booking.verticalsubcategory.name }} {{ booking.comments|default:"-" }} {% if booking.status == "In progress" %} In progress {% elif booking.status == "assigned" %} Assigned {% elif booking.status == "closed" %} Closed {% endif %} {{ booking.booked_at|date:"d M Y, h:i A" }}
{% else %}

No assigned services yet.

{% endif %}

Service Status Overview

{% endblock %}