mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 16:24:24 +00:00
I rewrote some messages to be more consistent and avoid multiplication of messages
14 lines
592 B
Twig
14 lines
592 B
Twig
<div class="activity">
|
|
<h3>{{ 'Activity'|trans }}</h3>
|
|
<div class="statement">
|
|
<span class="statement">{{ '%user% has done an %activity_type% on %date%'|trans(
|
|
{
|
|
'%user%' : user,
|
|
'%activity_type%': activity.type.name|localize_translatable_string,
|
|
'%date%' : activity.date|localizeddate('long', 'none') }
|
|
) }}</span> <span class="links"><a href="{{ path('chill_activity_activity_show',
|
|
{ 'person_id': person.id, 'id': activity.id} ) }}">{{ 'Show the activity'|trans }}</a></span>
|
|
|
|
</div>
|
|
</div>
|