Fix incorrect parameter name in event details link

This commit is contained in:
2025-08-28 13:49:45 +02:00
parent 1fa464b87a
commit 76433e2512
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
kind: Fixed
body: Fix incorrect parameter name in event details link
time: 2025-08-28T13:49:39.087943549+02:00
custom:
Issue: ""
SchemaChange: No schema change

View File

@@ -53,7 +53,7 @@
{% set returnLabel = 'Back to %person% events'|trans({ '%person%' : currentPerson } ) %}
{% if is_granted('CHILL_EVENT_SEE_DETAILS', participation.event) %}
<a href="{{ path('chill_event__event_show', { 'event_id' : participation.event.id, 'return_path' : currentPath, 'return_label' : returnLabel } ) }}"
<a href="{{ path('chill_event__event_show', { 'id' : participation.event.id, 'return_path' : currentPath, 'return_label' : returnLabel } ) }}"
class="btn btn-primary btn-sm" title="{{ 'See details of the event'|trans }}">
<i class="fa fa-fw fa-eye"></i>
</a>