{% extends "base.html" %} {% load static %} {% block title %}Service Request Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% for req in requests %} {% endfor %}
Request ID User Category Service Date Status Total Price Created Actions
{{ req.request_id }} {{ req.contact_name|default:req.user.get_full_name|default:req.user.username }}
{{ req.contact_mobile|default:"" }}
{{ req.category.name }} {{ req.service_date }} {{ req.service_time }} {% if req.status == 'pending' %} Pending {% elif req.status == 'confirmed' %} Confirmed {% elif req.status == 'completed' %} Completed {% elif req.status == 'cancelled' %} Cancelled {% else %} {{ req.get_status_display }} {% endif %} {{ req.total_price }} {{ req.created_at|date:"M d, Y H:i" }}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}