{% extends "base.html" %} {% block title %}Revenue Twin{% endblock %} {% block page_title %}Revenue Twin{% endblock %} {% block content %}
Revenue Trends
Revenue Metrics
30-Day Revenue
{{ summary.revenue_30d | format_currency }}
Profit Margin
{{ "%.1f"|format(summary.margin) }}%
30-Day Profit
{{ summary.profit_30d | format_currency }}
Revenue Records
{% for record in records %} {% else %} {% endfor %}
Date Category Subcategory Amount Description Reference Recurring Actions
{{ record.transaction_date }} {{ record.category or '-' }} {{ record.subcategory or '-' }} {{ currency_symbol }}{{ "{:,.2f}".format(record.amount) }} {{ record.description or '-' }} {{ record.reference_number or '-' }} {% if record.is_recurring %} {{ record.recurring_frequency or 'Yes' }} {% else %} No {% endif %}
No revenue records found. Add your first revenue record to get started.
{% endblock %} {% block extra_js %} {% endblock %}