{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Quotations" %} | {{ site_settings.business_name }}{% endblock %} {% block content %}

{% trans "Quotations" %}

{% trans "Manage and track your price proposals" %}

{% trans "New Quotation" %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% for q in quotations %} {% empty %} {% endfor %}
{% trans "Quotation #" %} {% trans "Date" %} {% trans "Customer" %} {% trans "Total" %} {% trans "User" %} {% trans "Status" %} {% trans "Valid Until" %} {% trans "Actions" %}
{{ q.quotation_number|default:q.id }} {{ q.created_at|date:"Y-m-d" }} {{ q.customer.name|default:_("Guest") }} {{ site_settings.currency_symbol }}{{ q.total_amount|floatformat:3 }} {{ q.created_by.username|default:"System" }} {% if q.status == 'draft' %} {% trans "Draft" %} {% elif q.status == 'sent' %} {% trans "Sent" %} {% elif q.status == 'accepted' %} {% trans "Accepted" %} {% elif q.status == 'converted' %} {% trans "Converted" %} {% elif q.status == 'rejected' %} {% trans "Rejected" %} {% endif %} {{ q.valid_until|date:"Y-m-d"|default:"-" }}
{% if q.status != 'converted' %} {% endif %} {% if q.status != 'converted' %} {% endif %}
Empty

{% trans "No quotations found." %}

{% include "core/pagination.html" with page_obj=quotations %}
{% endblock %}