Skip to content
Snippets Groups Projects
Commit d026a2f9 authored by Moritz Strohm's avatar Moritz Strohm
Browse files

calendar/date/index: show location of the date, if present, fixes #3828

Closes #3828

Merge request !2700
parent b867baba
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,10 @@
<dl>
<dt><?= _('Zeit') ?></dt>
<dd><?= date('d.m.Y H:i', $date->begin) ?> - <?= date('d.m.Y H:i', $date->end) ?></dd>
<? if ($date->location) : ?>
<dt><?= _('Ort') ?></dt>
<dd><?= formatLinks($date->location) ?></dd>
<? endif ?>
<dt><?= _('Kategorie') ?></dt>
<dd><?= htmlReady($date->getCategoryAsString()) ?></dd>
<dt><?= _('Zugriff') ?></dt>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment