Browse Source

fix events grid

main
ghost 1 year ago
parent
commit
cf9b8de29f
  1. 18
      templates/default/activity/event/torrent/add.html.twig
  2. 18
      templates/default/activity/event/torrent/download/file/add.html.twig
  3. 18
      templates/default/activity/event/torrent/download/magnet/add.html.twig
  4. 24
      templates/default/activity/event/torrent/locales/add.html.twig
  5. 24
      templates/default/activity/event/torrent/locales/approve/add.html.twig
  6. 24
      templates/default/activity/event/torrent/locales/approve/delete.html.twig
  7. 24
      templates/default/activity/event/torrent/locales/delete.html.twig
  8. 24
      templates/default/activity/event/torrent/sensitive/add.html.twig
  9. 24
      templates/default/activity/event/torrent/sensitive/approve/add.html.twig
  10. 24
      templates/default/activity/event/torrent/sensitive/approve/delete.html.twig
  11. 24
      templates/default/activity/event/torrent/sensitive/delete.html.twig
  12. 20
      templates/default/activity/event/torrent/star/add.html.twig
  13. 21
      templates/default/activity/event/torrent/star/delete.html.twig
  14. 14
      templates/default/activity/event/undefined.html.twig
  15. 15
      templates/default/activity/event/user/add.html.twig
  16. 18
      templates/default/activity/event/user/approve/add.html.twig
  17. 18
      templates/default/activity/event/user/approve/delete.html.twig
  18. 18
      templates/default/activity/event/user/moderator/add.html.twig
  19. 18
      templates/default/activity/event/user/moderator/delete.html.twig
  20. 20
      templates/default/activity/event/user/star/add.html.twig
  21. 20
      templates/default/activity/event/user/star/delete.html.twig
  22. 18
      templates/default/activity/event/user/status/add.html.twig
  23. 19
      templates/default/activity/event/user/status/delete.html.twig

18
templates/default/activity/event/torrent/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'added torrent' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/torrent/download/file/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'downloaded torrent file' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/torrent/download/magnet/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'downloaded magnet link' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/locales/add.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'added locales edition' | trans }}
{% if torrent.locales.exist %}
</a>
{{ 'added locales edition' | trans }}
{% if torrent.locales.exist %}
<a href="{{ path('torrent_locales_edit', { torrentId : torrent.id, torrentLocalesId : torrent.locales.id }) }}">
#{{ torrent.locales.id }}
</a>
{% else %}
{% else %}
#{{ torrent.locales.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/locales/approve/add.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'approved locales edition' | trans }}
{% if torrent.locales.exist %}
</a>
{{ 'approved locales edition' | trans }}
{% if torrent.locales.exist %}
<a href="{{ path('torrent_locales_edit', { torrentId : torrent.id, torrentLocalesId : torrent.locales.id }) }}">
#{{ torrent.locales.id }}
</a>
{% else %}
{% else %}
#{{ torrent.locales.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/locales/approve/delete.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'disapproved locales edition' | trans }}
{% if torrent.locales.exist %}
</a>
{{ 'disapproved locales edition' | trans }}
{% if torrent.locales.exist %}
<a href="{{ path('torrent_locales_edit', { torrentId : torrent.id, torrentLocalesId : torrent.locales.id }) }}">
#{{ torrent.locales.id }}
</a>
{% else %}
{% else %}
#{{ torrent.locales.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/locales/delete.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'deleted locales edition' | trans }}
{% if torrent.locales.exist %}
</a>
{{ 'deleted locales edition' | trans }}
{% if torrent.locales.exist %}
<a href="{{ path('torrent_locales_edit', { torrentId : torrent.id, torrentLocalesId : torrent.locales.id }) }}">
#{{ torrent.locales.id }}
</a>
{% else %}
{% else %}
#{{ torrent.locales.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/sensitive/add.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'added sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
</a>
{{ 'added sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
<a href="{{ path('torrent_sensitive_edit', { torrentId : torrent.id, torrentSensitiveId : torrent.sensitive.id }) }}">
#{{ torrent.sensitive.id }}
</a>
{% else %}
{% else %}
#{{ torrent.sensitive.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/sensitive/approve/add.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'approved sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
</a>
{{ 'approved sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
<a href="{{ path('torrent_sensitive_edit', { torrentId : torrent.id, torrentSensitiveId : torrent.sensitive.id }) }}">
#{{ torrent.sensitive.id }}
</a>
{% else %}
{% else %}
#{{ torrent.sensitive.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/sensitive/approve/delete.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'disapproved sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
</a>
{{ 'disapproved sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
<a href="{{ path('torrent_sensitive_edit', { torrentId : torrent.id, torrentSensitiveId : torrent.sensitive.id }) }}">
#{{ torrent.sensitive.id }}
</a>
{% else %}
{% else %}
#{{ torrent.sensitive.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

24
templates/default/activity/event/torrent/sensitive/delete.html.twig

@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
{{ 'deleted sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
</a>
{{ 'deleted sensitive edition' | trans }}
{% if torrent.sensitive.exist %}
<a href="{{ path('torrent_sensitive_edit', { torrentId : torrent.id, torrentSensitiveId : torrent.sensitive.id }) }}">
#{{ torrent.sensitive.id }}
</a>
{% else %}
{% else %}
#{{ torrent.sensitive.id }}
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{% endif %}
{{ 'for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

20
templates/default/activity/event/torrent/star/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
{{ 'added star to torrent' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
</a>
<span class="margin-x-4-px">
{{ 'added star to torrent' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

21
templates/default/activity/event/torrent/star/delete.html.twig

@ -1,12 +1,17 @@ @@ -1,12 +1,17 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
{{ 'removed star from torrent' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
</a>
<span class="margin-x-4-px">
{{ 'removed star from torrent' | trans }}
</span>
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
{{ torrent.name }}
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

14
templates/default/activity/event/undefined.html.twig

@ -1,9 +1,13 @@ @@ -1,9 +1,13 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'undefined event' | trans }}
</span>
<div class="float-right">
</span>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

15
templates/default/activity/event/user/add.html.twig

@ -1,9 +1,14 @@ @@ -1,9 +1,14 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'joined' | trans }} {{ name }}
</span>
<div class="float-right">
</span>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/user/approve/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'approved by' | trans }}
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/user/approve/delete.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'disapproved by' | trans }}
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/user/moderator/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'grant moderator permissions to' | trans }}
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/user/moderator/delete.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'remove moderator permissions from' | trans }}
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

20
templates/default/activity/event/user/star/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
{{ 'added star to' | trans }}
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
</a>
<span class="margin-x-4-px">
{{ 'added star to' | trans }}
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

20
templates/default/activity/event/user/star/delete.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
{{ 'removed star from' | trans }}
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
</a>
<span class="margin-x-4-px">
{{ 'removed star from' | trans }}
</span>
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

18
templates/default/activity/event/user/status/add.html.twig

@ -1,12 +1,16 @@ @@ -1,12 +1,16 @@
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'enable user' | trans }}
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>

19
templates/default/activity/event/user/status/delete.html.twig

@ -1,12 +1,17 @@ @@ -1,12 +1,17 @@
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', { userId : by.user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ by.user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<span class="margin-x-4-px">
</a>
<span class="margin-x-4-px">
{{ 'diable user' | trans }}
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
</span>
<a href="{{ path('user_info', { userId : user.id }) }}">
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
</a>
<div class="float-right">
</a>
</div>
<div class="column width-20 text-right">
{{ added | format_ago }}
</div>
</div>
Loading…
Cancel
Save