Skip to content

Commit

Permalink
fix email count display
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerrialn committed Jan 11, 2024
1 parent f89f3a7 commit ce175c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/events/show.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,11 @@
data-bs-toggle="modal"
data-bs-target="#invited-users"
class="list-group-item list-group-item-action text-center">
{{ 'invited-by-email'|trans({count: event.eventEmailInvitations.count|compact_notation}) }}
{{ 'number-invited-by-email'|trans({count: event.eventEmailInvitations.count|compact_notation}) }}
</a>
{% else %}
<div class="list-group-item text-center">
{{ 'invited-by-email'|trans({count: event.eventEmailInvitations.count|compact_notation}) }}
{{ 'number-invited-by-email'|trans({count: event.eventEmailInvitations.count|compact_notation}) }}
</div>
{% endif %}
{% if app.user and app.user|has_event_permission(event, 'role.event.manager') or app.user|has_event_permission(event, 'role.event.admin') or app.user|has_event_permission(event, 'role.event.promoter') %}
Expand Down

0 comments on commit ce175c4

Please sign in to comment.