{% load django_ledger %} {% load i18n %}

{% icon 'eos-icons:job' 36 %} {% trans 'Estimate' %} {{ estimate_model.estimate_number }}

{% trans 'Status' %}: {{ estimate_model.get_status_display }}

{% trans 'Estimated Revenue' %}: {% currency_symbol %}{{ estimate_model.get_revenue_estimate | currency_format }}

{% trans 'Profit Estimate' %}: {% currency_symbol %}{{ estimate_model.get_profit_estimate | currency_format }}


{% trans 'Cost Breakdown' %}:

{% trans 'Labor Cost' %}: {% currency_symbol %}{{ estimate_model.labor_estimate }}

{% trans 'Materials Cost' %}: {% currency_symbol %}{{ estimate_model.material_estimate }}

{% trans 'Equipment Cost' %}: {% currency_symbol %}{{ estimate_model.equipment_estimate }}

{% trans 'Other Cost' %}: {% currency_symbol %}{{ estimate_model.other_estimate }}

{% trans 'Total Cost' %}: {% currency_symbol %}{{ estimate_model.get_cost_estimate | currency_format }}

{% trans 'Estimated Gross Margin' %}: {{ estimate_model.get_gross_margin_estimate | percentage }}

{# PROGRESS BARS #} {% if estimate_model.is_approved and contract_progress %} {# todo: still needs to be properly populated #}

{% trans 'Cost Progress' %}

{% trans 'Invoice Progress' %}

{% trans 'Received Progress' %}

{% endif %}