{% extends "base.html" %} {% block title %}{{ sim_label }} - Simulation{% endblock %} {% block content %}

{{ sim_label }}

Simulate the impact of tax rate changes on your business

Simulation Parameters
Leave as company revenue or enter a specific amount
{% if baseline %}
Company Baseline
Annual Revenue {{ currency_symbol }}{{ "{:,.0f}".format(baseline.revenue) }}
Operating Costs {{ currency_symbol }}{{ "{:,.0f}".format(baseline.costs) }}
Gross Profit {{ currency_symbol }}{{ "{:,.0f}".format(baseline.profit) }}
Profit Margin: {{ "%.2f"|format((baseline.profit / baseline.revenue * 100) if baseline.revenue > 0 else 0) }}%
{% endif %}

Run the simulation to see results

Enter your tax parameters and click Run Simulation

{% endblock %}