Skip to content

Commit a690bbe

Browse files
committed
5319: Handled times in meeting details
1 parent a3d3027 commit a690bbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434

3535
{% if variables is defined %}
3636
<h5 class="mt-3">{{ 'Date'|t }}</h5>
37-
{{ variables.time_from_value|date('U')|format_date('hoeringsportal_date_long') }}
37+
{{ variables.time_from|date('U')|format_date('hoeringsportal_date_long') }}
3838

3939
<h5 class="mt-3">{{ 'Time'|t }}</h5>
40-
{{ variables.time_from_value|date('U')|format_date('hoeringsportal_time') }} - {{ variables.time_to_value|date('U')|format_date('hoeringsportal_time') }}
40+
{{ variables.time_from|date('U')|format_date('hoeringsportal_time') }} - {{ variables.time_to|date('U')|format_date('hoeringsportal_time') }}
4141
{% elseif node.field_last_meeting_time[0] is defined %}
4242
<h5 class="mt-3">{{ 'Date'|t }}</h5>
4343
{{ node.field_last_meeting_time[0].date|date('U')|format_date('hoeringsportal_date_long') }}

0 commit comments

Comments
 (0)