{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Quotations" %} | {{ site_settings.business_name }}{% endblock %} {% block content %}
{% trans "Manage and track your price proposals" %}
| {% 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:"-" }} |
|
|
{% trans "No quotations found." %} |
|||||||