{{ ui.button('Add / View Expenses', '/expenses') }}
{{ ui.button('Profit & Loss', '/analytics/profit-loss') }}
{{ ui.button('Back to Admin', '/admin') }}
Total Sales{{ currency_symbol }}{{ "%.2f"|format(sales or 0) }}
Cost of Goods Sold{{ currency_symbol }}{{ "%.2f"|format(cost or 0) }}
Gross Profit{{ currency_symbol }}{{ "%.2f"|format(gross_profit or 0) }}
Total Expenses{{ currency_symbol }}{{ "%.2f"|format(expenses or 0) }}
Net Operating Profit{{ currency_symbol }}{{ "%.2f"|format(profit or 0) }}
Owner Personal Balance{{ currency_symbol }}{{ "%.2f"|format(fund_balances.personal_balance or 0) }}
Business Balance{{ currency_symbol }}{{ "%.2f"|format(fund_balances.business_balance or 0) }}
Loan Balance{{ currency_symbol }}{{ "%.2f"|format(fund_balances.loans_balance or 0) }}