{% extends 'user/layout.html.twig' %} {% import "macros/widgets.html.twig" as widgets %} {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('chart') }} {% endblock %} {% block head %} {{ parent() }} {{ encore_entry_script_tags('chart') }} {% endblock %} {% block profile_navbar %} {{ _self.about_me(user, stats) }} {% endblock %} {% block profile_intro %}{% endblock %} {% block profile_content %} {{ _self.profile_box_horizontal(user, stats) }} {% if years is empty %} {{ widgets.nothing_found() }} {% endif %} {% for year, yearStat in years %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' %} {% block box_title %}{{ year }}{% endblock %} {% block box_body %}
{{ 'profile.first_entry'|trans }}
{# FIXME use a configuration for it #}
{{ stats.firstEntry|date_short }}
{{ 'profile.registration_date'|trans }}
{{ user.registeredAt|date_short }}
{{ 'label.hourlyRate'|trans }}
{{ user.preferenceValue('hourly_rate') }}
{{ user.title }}
{{ 'stats.durationMonth'|trans }} | {{ stats.durationThisMonth|duration }} |
---|---|
{{ 'stats.amountMonth'|trans }} | {# TODO which currency shall we use here? #}{{ stats.amountThisMonth|money }} |
{{ 'stats.durationTotal'|trans }} | {{ stats.durationTotal|duration }} |
{{ 'stats.amountTotal'|trans }} | {# TODO which currency shall we use here? #}{{ stats.amountTotal|money }} |