{% extends 'base.html.twig' %} {% import "activity/actions.html.twig" as actions %} {% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %} {% block page_actions %}{{ actions.activity(activity, 'delete') }}{% endblock %} {% block main %} {% set params = { '%activity%': '' ~ activity.name ~ '', '%project%': '-', '%customer%': '-', '%records%': '' ~ stats.recordAmount ~ '', '%duration%': '' ~ stats.recordDuration|duration ~ '' } %} {% if activity.project is not null %} {% set params = params|merge({ '%project%': '' ~ activity.project.name ~ '', '%customer%': '' ~ activity.project.customer.name ~ '', }) %} {% endif %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% import "macros/progressbar.html.twig" as progress %} {% block box_title %}{{ activity.name }}{% endblock %} {% block box_body %}

{{ 'admin_activity.short_stats'|trans(params)|raw }}

{% set currency = null %} {% if activity.project is not null %} {% set currency = activity.project.customer.currency %} {% endif %} {{ progress.progressbar(activity.budget, stats.recordRate, 'label.budget'|trans, stats.recordRate|money(currency) ~ ' / ' ~ activity.budget|money(currency) ) }} {{ progress.progressbar(activity.timeBudget, stats.recordDuration, 'label.timeBudget'|trans, stats.recordDuration|duration ~ ' / ' ~ activity.timeBudget|duration ) }} {% endblock %} {% endembed %} {% endblock %}