{% extends "base.html" %} {% block title %}Financial Modeling{% endblock %} {% block page_title %}Financial Modeling{% endblock %} {% block content %}
30d Revenue
{{ currency_symbol }}{{ "{:,.0f}".format(summary.revenue_30d) }}
30d Profit
{{ currency_symbol }}{{ "{:,.0f}".format(summary.profit_30d) }}
Margin
{{ "%.1f"|format(summary.margin) }}%
Recent Transactions
{% if transactions %} {% for t in transactions %} {% endfor %}
DateTypeCategoryAmountDescription
{{ t.transaction_date }}{{ t.transaction_type|title }}{{ t.category or '-' }}{{ currency_symbol }}{{ "{:,.2f}".format(t.amount) }}{{ t.description or '-' }}
{% else %}

No transactions recorded yet.

{% endif %}
{% endblock %}