{% extends "base.html" %} {% block content %}

Dashboard

+ New Quote

Draft / Sent Quotes

{% for q in quotes if q.status in ['draft','sent'] %} {% else %} {% endfor %}
ID Title Status Total
{{ q.id }} {{ q.title }} {{ q.status }} ${{ q.total }} Open
None

Approved Quotes (Ready for Invoice)

{% for q in quotes if q.status == 'approved' %} {% else %} {% endfor %}
ID Title Total
{{ q.id }} {{ q.title }} ${{ q.total }} View
None
{% endblock %}