{% extends 'base.html' %} {% block content %}

Revenue Management

Track and manage restaurant revenues

Total Revenue

{{ stats.total_amount }}

Completed orders only
Net Vendor Revenue

{{ stats.total_paid }}

Without service fees
Pending Payments

{{ stats.total_unpaid }}

Across all restaurants
Total VAT

{{ stats.vat }}

10% of (Revenue + Service Fee)
{% for stat in restaurant_stats %}
{{ stat.name }}
{{ stat.city }}
Total Revenue

${{ "%.2f"|format(stat.total_amount) }}

Completed orders
Pending

${{ "%.2f"|format(stat.total_unpaid) }}

Awaiting completion

Service Fee (5%) ${{ "%.2f"|format(stat.service_fee) }}
VAT (10%) ${{ "%.2f"|format(stat.vat) }}
Net Revenue ${{ "%.2f"|format(stat.total_paid) }}
{% endfor %}
{% endblock %}