{% extends 'base.html' %} {% load humanize %} {% block title %}Customer Requests Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Customer Requests Management

Track and manage customer service requests

+ Create Request 📈 Analytics 📊 View Report
Clear
{% for request in page_obj %}
{{ request.subject }} {{ request.get_priority_display }}
{{ request.request_number }} 👤 {{ request.customer.get_full_name }} 🏷️ {{ request.get_request_type_display }} {{ request.created_at|timesince }} ago {% if request.assigned_to %} 👔 {{ request.assigned_to.get_full_name }} {% endif %}

{{ request.description|truncatewords:20 }}

{{ request.get_status_display }} {% if request.status == 'resolved' and request.resolved_at %}
{{ request.resolved_at|timesince }} ago
{% endif %}
{% if request.status != 'resolved' and request.status != 'closed' %} {% endif %} {% if not request.assigned_to %} {% endif %}
{% empty %}
📥
No requests found

No customer requests match your current filters.

+ Create First Request
{% endfor %}
{% if page_obj.has_other_pages %}
{% endif %}
{{ page_obj.paginator.count }}
Total Requests
{% with pending_count=page_obj.object_list|length %} {{ pending_count }} {% endwith %}
In Current View
-
Avg Resolution Time
-
Resolution Rate
{% endblock %} {% block extra_js %} {% endblock %}