{% extends "adminpanel/base.html" %} {% load money %} {% block title %}Quotations — admin{% endblock %} {% block heading %}Quotations{% endblock %} {% block content %}
{% for q in quotes %}

{{ q.number }} — {{ q.client_name }}

{{ q.get_status_display }}
{{ q.title }} · {{ q.created_at|date:"j M Y" }}
{% for i in q.items.all %}{% endfor %}
Line itemAmount
{{ i.description }}{{ i.amount|naira }}
Total{{ q.total|naira }}
{% if q.status == 'accepted' %} Convert to project {% else %} Mark accepted {% endif %} Edit
{% empty %}

No quotations yet

Create one from a lead and it will show here with its line items and total.

Open leads
{% endfor %}
{% endblock %}