Skip to content
Snippets Groups Projects
Commit 95e631f8 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

show name of study group on overview page and hide empty description correctly, fixes #314

parent 42d7b533
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,10 @@
</header>
<section>
<dl style="margin: 0">
<? if ($studygroup->description): ?>
<dt><?= _('Name der Studiengruppe') ?></dt>
<dd><?= htmlReady($studygroup->name) ?></dd>
<? if ((string) $studygroup->description): ?>
<dt><?= _('Beschreibung') ?></dt>
<dd><?= formatLinks($studygroup->description) ?></dd>
<? endif; ?>
......
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