{% extends "admin/base.html" %} {% block title %}Quotations - Admin{% endblock %} {% block content %}

Quotations Management

Clear
{% if quotations.items %}
{% for quotation in quotations.items %} {% endfor %}
ID User Model Country Mold Type Base Price Total Cost Date Actions
{{ quotation.id }} {{ quotation.user.username }} {{ quotation.model_name }} {{ quotation.mold_shop_country }} {{ quotation.mold_main_type }} ${{ "%.2f"|format(quotation.base_price) }} ${{ "%.2f"|format(quotation.total_cost) }} {{ quotation.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if quotations.pages > 1 %}
{% if quotations.has_prev %} Previous {% endif %} Page {{ quotations.page }} of {{ quotations.pages }} {% if quotations.has_next %} Next {% endif %}
{% endif %} {% else %}

No quotations found matching your criteria.

{% if filters.country or filters.mold_type or filters.date_from or filters.date_to %} Clear Filters {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %}