mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 04:56:10 +01:00
Remove time output if its set to 0:00 oclock
This commit is contained in:
parent
9814e8dac9
commit
c9b1904d58
3 changed files with 22 additions and 4 deletions
|
@ -18,7 +18,15 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<div class="caption-text mt-3">
|
<div class="caption-text mt-3">
|
||||||
{date.event.region.title} | <f:format.date format="d. m. Y - H:i">{date.start}</f:format.date>
|
{date.event.region.title} |
|
||||||
|
<f:if condition="{f:format.date(format: 'H:i', date: '{date.start}')} == '00:00'">
|
||||||
|
<f:then>
|
||||||
|
<f:format.date format="d. m. Y">{date.start}</f:format.date>
|
||||||
|
</f:then>
|
||||||
|
<f:else>
|
||||||
|
<f:format.date format="d. m. Y - H:i">{date.start}</f:format.date>
|
||||||
|
</f:else>
|
||||||
|
</f:if>
|
||||||
<h4>{date.event.title}</h4>
|
<h4>{date.event.title}</h4>
|
||||||
<p>{date.event.teaser}</p>
|
<p>{date.event.teaser}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -6,7 +6,9 @@
|
||||||
<f:for each="{pagination.paginator.paginatedItems}" as="date" iteration="index">
|
<f:for each="{pagination.paginator.paginatedItems}" as="date" iteration="index">
|
||||||
<div class="row mt-3 mb-3 pb-3">
|
<div class="row mt-3 mb-3 pb-3">
|
||||||
<div class="col-2">
|
<div class="col-2">
|
||||||
<b><f:format.date format="H:i">{date.start}</f:format.date></b><br>
|
<f:if condition="{f:format.date(format: 'H:i', date: '{date.start}')} != '00:00'">
|
||||||
|
<b><f:format.date format="H:i">{date.start}</f:format.date></b><br>
|
||||||
|
</f:if>
|
||||||
<b><f:format.date format="%a">{date.start}</f:format.date></b><br>
|
<b><f:format.date format="%a">{date.start}</f:format.date></b><br>
|
||||||
<b><f:format.date format="d.m.">{date.start}</f:format.date></b><br>
|
<b><f:format.date format="d.m.">{date.start}</f:format.date></b><br>
|
||||||
{date.event.region.title}<br>
|
{date.event.region.title}<br>
|
||||||
|
|
|
@ -25,12 +25,20 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<div class="caption-text mt-3">
|
<div class="caption-text mt-3">
|
||||||
{date.event.region.title} | <f:format.date format="d. m. Y - H:i">{date.start}</f:format.date>
|
{date.event.region.title} |
|
||||||
|
<f:if condition="{f:format.date(format: 'H:i', date: '{date.start}')} == '00:00'">
|
||||||
|
<f:then>
|
||||||
|
<f:format.date format="d. m. Y">{date.start}</f:format.date>
|
||||||
|
</f:then>
|
||||||
|
<f:else>
|
||||||
|
<f:format.date format="d. m. Y - H:i">{date.start}</f:format.date>
|
||||||
|
</f:else>
|
||||||
|
</f:if>
|
||||||
<h4>{date.event.title}</h4>
|
<h4>{date.event.title}</h4>
|
||||||
<p>{date.event.teaser}</p>
|
<p>{date.event.teaser}</p>
|
||||||
<f:if condition="{date.event.highlight}">
|
<f:if condition="{date.event.highlight}">
|
||||||
<f:then>
|
<f:then>
|
||||||
<b>Hightlight</b>
|
<b>Highlight</b>
|
||||||
</f:then>
|
</f:then>
|
||||||
</f:if>
|
</f:if>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue