82 lines
4.8 KiB
HTML
82 lines
4.8 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n static %}
|
|
|
|
{% block title %}{{ _("Quotations") }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="row g-3 mt-4 mb-4">
|
|
|
|
<div class="row g-3 justify-content-between mb-4">
|
|
<div class="col-auto">
|
|
<div class="d-md-flex justify-content-between">
|
|
<h2 class="mb-3"> {% trans "Quotations" %}<i class="fa-regular fa-file-lines text-primary ms-2"></i></h2>
|
|
</div>
|
|
</div>
|
|
<div class="col-auto">
|
|
<div class="d-flex">
|
|
{% include 'partials/search_box.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="table-responsive px-1 scrollbar">
|
|
<table class="table align-items-center table-flush">
|
|
<thead>
|
|
<tr class="bg-body-highlight">
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Quotation Number" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Customer" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Status" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Status Date" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Created" %}</th>
|
|
<th class="sort white-space-nowrap align-middle" scope="col">{% trans "Actions" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="list">
|
|
{% for extra in staff_estimates %}
|
|
<tr class="hover-actions-trigger btn-reveal-trigger position-static">
|
|
<td class="align-middle product white-space-nowrap py-0 px-1">{{ extra.content_object.estimate_number }}</td>
|
|
<td class="align-middle product white-space-nowrap">{{ extra.content_object.customer.customer_name }}</td>
|
|
<td class="align-middle product white-space-nowrap">
|
|
{% if extra.content_object.status == 'draft' %}
|
|
<span class="badge badge-phoenix badge-phoenix-warning">{% trans "Draft" %}</span>
|
|
{% elif extra.content_object.status == 'in_review' %}
|
|
<span class="badge badge-phoenix badge-phoenix-info">{% trans "In Review" %}</span>
|
|
{% elif extra.content_object.status == 'approved' %}
|
|
<span class="badge badge-phoenix badge-phoenix-success">{% trans "Approved" %}</span>
|
|
{% elif extra.content_object.status == 'declined' %}
|
|
<span class="badge badge-phoenix badge-phoenix-danger">{% trans "Declined" %}</span>
|
|
{% elif extra.content_object.status == 'canceled' %}
|
|
<span class="badge badge-phoenix badge-phoenix-danger">{% trans "Canceled" %}</span>
|
|
{% elif extra.content_object.status == 'completed' %}
|
|
<span class="badge badge-phoenix badge-phoenix-success">{% trans "Completed" %}</span>
|
|
{% elif extra.content_object.status == 'void' %}
|
|
<span class="badge badge-phoenix badge-phoenix-secondary">{% trans "Void" %}</span>
|
|
{% endif %}
|
|
</td>
|
|
<td class="align-middle product white-space-nowrap">{{ extra.content_object.get_status_action_date }}</td>
|
|
<td class="align-middle product white-space-nowrap">{{ extra.content_object.created }}</td>
|
|
<td class="align-middle product white-space-nowrap">
|
|
<a href="{% url 'estimate_detail' request.dealer.slug extra.content_object.pk %}"
|
|
class="btn btn-sm btn-phoenix-success">
|
|
<i class="fa-regular fa-eye me-1"></i>
|
|
{% trans "view"|capfirst %}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="6" class="text-center">{% trans "No Quotation Found" %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% if page_obj.paginator.num_pages > 1 %}
|
|
<div class="d-flex justify-content-end mt-3">
|
|
<div class="d-flex">
|
|
{% include 'partials/pagination.html'%}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |