{% extends "@ChillPerson/Person/layout.html.twig" %} {% from 'ChillBudgetBundle:Budget:_macros.html.twig' import table_results %} {% set activeRouteKey = '' %} {% set title = 'Budget for %name%'|trans({ '%name%' : person.firstName ~ " " ~ person.lastName } ) %} {% block title title %} {% block js %} {{ encore_entry_script_tags('page_budget') }} {% endblock %} {% block css %} {{ encore_entry_link_tags('page_budget') }} {% endblock %} {% block content %}

{{ title }}

{% include '@ChillBudget/Budget/_budget.html.twig' with { 'resources': resources, 'charges': charges, 'person': person } %}

{{ 'Budget calculator'|trans }}

{{ table_results(charges, resources) }}
{% if is_granted('CHILL_BUDGET_ELEMENT_CREATE', person) %} {% endif %} {% endblock %}