Budget

Total Budget: ${{ total_budget|currency }}
{% if tasks %}
Download Template
{% for task in tasks %}
{{ task.name }} {% if task.id in task_budgets %} ${{ task_budgets[task.id].subtotal|currency }} {% else %} $0 {% endif %}
{% if task.id in task_budgets %} {% for item in task_budgets[task.id]["items"] %}
{{ item.name }}
{{ item.cost_per_unit|currency }}/unit × {{ item.units|currency }} units {{ (item.cost_per_unit * item.units)|currency }}
{% endfor %} {% endif %}
{% endfor %}
{% if not budget_items %}

No budget items yet. Add items above.

{% endif %}
Indirect ({{ indirect_percent|round|int }}%) ${{ indirect_amount|currency }}
Total: ${{ total_with_indirect|currency }}
{% else %}

No tasks available. Add tasks in the Scope section first.

{% endif %}