{% extends 'emails/base.html.twig' %} {% block subject %} {%- autoescape false -%} Your summary for the week of {{ 'now'|date(user.dateFormat) }} {%- endautoescape -%} {% endblock %} {% block body_text %} {% autoescape false %} Here's how you spent your time on Ledger this week! {% for command, total in actions %} - {{ ('email.weekly_' ~ command)|trans({ '%total%': total|number_format })|html2text }} {% endfor %} Thanks, Your friends at Ledger {% endautoescape %} {% endblock %} {% block body_html_content %} {% import 'emails/macros.html.twig' as EUI %} {{ EUI.displayAvatarText( appScheme ~ '://' ~ appHost ~ asset('images/ledger-icon.png'), 'Here\'s how you spent your time on Ledger this week!' ) }}