{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Profit And Loss{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Profit And Loss

Revenue, cost, profit, and margin across key operating periods.

Back to Analytics

{% for period, data in profit_analysis.items() %} {% endfor %}
PeriodRevenueCostProfitMargin
{{ period }} {{ currency_symbol }}{{ "%.2f"|format(data.revenue or 0) }} {{ currency_symbol }}{{ "%.2f"|format(data.cost or 0) }} {{ currency_symbol }}{{ "%.2f"|format(data.profit or 0) }} {{ "%.1f"|format(data.profit_margin or 0) }}%
{% endblock %}