{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load django_ledger %} {% load trans from i18n %} {% block view_content %}
{% include "django_ledger/estimate/includes/card_estimate.html" with estimate_model=estimate_model contract_progress=contract_progress %}

{% icon 'teenyicons:cost-estimate-outline' 36 %} {% trans 'Estimate Items' %}

{% estimate_item_table estimate_item_list %}
{% include 'django_ledger/includes/card_markdown.html' with style='card_1' title='Notes' notes_html=object.notes_html %}
{% if estimate_model.is_approved %}

{% icon 'teenyicons:cost-estimate-outline' 36 %} {% trans 'Purchase Orders' %}

{% po_table estimate_po_model_queryset %} {% trans 'Initiate PO' %}

{% icon 'teenyicons:cost-estimate-outline' 36 %} {% trans 'Bills' %}

{% bill_table estimate_bill_model_queryset %} {% trans 'Initiate Bill' %}

{% icon 'teenyicons:cost-estimate-outline' 36 %} {% trans 'Invoices' %}

{% invoice_table estimate_invoice_model_queryset %} {% trans 'Initiate Invoice' %}
{% endif %}
{% endblock %}