{% set timeBudgetVisible = is_granted('time', entity) %} {% set durationTrans = entity.isMonthlyBudget() ? 'stats.durationMonth' : 'stats.durationTotal' %} {% if timeBudgetVisible %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% import "macros/progressbar.html.twig" as progress %} {% import "macros/widgets.html.twig" as widgets %} {% block box_title %} {{ 'label.timeBudget'|trans }} {% if entity.isMonthlyBudget() %}({{ 'label.budgetType_month'|trans }}){% endif %} {% endblock %} {% block box_body_class %}no-padding{% endblock %} {% block box_attributes %}id="time_budget_box"{% endblock %} {% block box_body %}
{{ 'label.timeBudget'|trans }} | {% if entity.timeBudget > 0 %} {{ entity.timeBudget|duration }} {% else %} - {% endif %} | {% if entity.timeBudget > 0 %} 100% {% else %} - {% endif %} |
{{ durationTrans|trans }} | {{ stats.duration|duration }} | {{ totalPercentReached|number_format(2) }}% |
{{ 'label.billable'|trans }} | {{ stats.durationBillable|duration }} | {{ percentReached|number_format(2) }}% |
{% if totalPercentReached < 100 %} {{ 'stats.percentUsedLeft'|trans({'%percent%': totalPercentReached|number_format(2), '%left%': (entity.timeBudget - stats.durationBillable)|duration}) }} {% else %} {{ 'stats.percentUsed'|trans({'%percent%': totalPercentReached|number_format(2)}) }} {% endif %} |
---|
{{ 'label.budget'|trans }} | {% if entity.budget > 0 %} {{ entity.budget|money(currency) }} {% else %} - {% endif %} | {% if entity.budget > 0 %} 100% {% else %} - {% endif %} |
{{ rateTrans|trans }} | {{ stats.rate|money(currency) }} | {{ totalPercentReached|number_format(2) }}% |
{{ 'label.billable'|trans }} | {{ stats.rateBillable|money(currency) }} | {{ percentReached|number_format(2) }}% |
{{ 'label.rate_internal'|trans }} | {{ stats.internalRate|money(currency) }} | {{ percentReached|number_format(2) }}% |
{{ 'label.hourlyRate'|trans }} ({{ 'label.billable'|trans }} / {{ durationTrans|trans }}) | {{ realHourlyRate|money(currency) }} | - |
{% if totalPercentReached < 100 %} {{ 'stats.percentUsedLeft'|trans({'%percent%': totalPercentReached|number_format(2), '%left%': (entity.budget - stats.rateBillable)|money(currency)}) }} {% else %} {{ 'stats.percentUsed'|trans({'%percent%': totalPercentReached|number_format(2)}) }} {% endif %} |
---|