{% extends 'django_ledger/layouts/content_layout_1.html' %} {% load django_ledger %} {% load trans from i18n %} {% block view_content %}
{% trans 'Revenue Estimate' %}:
{% currency_symbol %}{{ estimate_model.get_revenue_estimate | currency_format }}
{% trans 'Cost Estimate' %}:
{% currency_symbol %}{{ estimate_model.get_cost_estimate | absolute | currency_format }}
{% trans 'Profit Estimate' %}:
{% currency_symbol %}{{ estimate_model.get_profit_estimate | currency_format }}
{% trans 'Gross Margin Estimate' %}:
{% currency_symbol %}{{ estimate_model.get_gross_margin_estimate | percentage }}