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

{{ tour.name }}

{{ day_display }}

{{ day_subtext }}

Total Tour Budget

{{ tour.currency }}{{ "{:,.0f}".format(tour.budget) }}

Start of Day Balance

{{ tour.currency }}{{ "{:,.2f}".format(start_of_day_balance) }}
{% set percent = (total_spent / tour.budget) * 100 %}
Budget Used {{ tour.currency }}{{ "{:,.0f}".format(total_spent) }} / {{ tour.currency }}{{ "{:,.0f}".format(tour.budget) }}
{% endblock %}