mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-31 04:57:46 +00:00
25 lines
639 B
Twig
25 lines
639 B
Twig
{% apply markdown_to_html %}
|
|
# {{ 'notification.daily_digest.title'|trans }}
|
|
|
|
{{ 'notification.daily_digest.greeting'|trans({'%user%': user.label ?? user.email}) }},
|
|
|
|
{{ 'daily_notifications'|trans({'notification_count': notification_count}) }}
|
|
|
|
{% for notification in notifications %}
|
|
## {{ notification.title }}
|
|
|
|
{{ notification.message }}
|
|
|
|
{{ 'notification.daily_digest.view_notification'|trans }}
|
|
|
|
{{ absolute_url(path('chill_main_notification_show', {'_locale': user.locale, 'id': notification.id }, false)) }}
|
|
|
|
{% if not loop.last %}
|
|
---
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
---
|
|
{{ 'notification.daily_digest.signature'|trans }}
|
|
{% endapply %}
|