blob: df724541a560fb397fb0c35e18b9c90538ad78e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<div>
<h2><?= htmlReady($topic->title) ?></h2>
<? $has_content = false ?>
<? if (
($documents_activated && $topic->folders->first())
|| ($forum_activated && $topic->forum_thread_url)
) : ?>
<h3><?= _('Materialien') ?></h3>
<?= $this->render_partial('course/topics/_material.php', ['always_show' => true]) ?>
<? $has_content = true ?>
<? endif ?>
<? if (count($topic->dates) > 0) : ?>
<h3><?= _('Termine') ?></h3>
<?= $this->render_partial('course/topics/_dates.php') ?>
<? $has_content = true ?>
<? endif ?>
<? if ($topic->description) : ?>
<h3><?= _('Beschreibung') ?></h3>
<?= formatReady($topic->description) ?>
<? $has_content = true ?>
<? endif ?>
<? if (!$has_content) : ?>
<?= _('Keine weiteren Informationen verfügbar.') ?>
<? endif ?>
</div>
|