diff options
| author | Finn Schneider <schneider@data-quest.de> | 2026-03-19 17:16:35 +0100 |
|---|---|---|
| committer | Finn Schneider <schneider@data-quest.de> | 2026-03-19 17:16:35 +0100 |
| commit | f8e7441a9184b19ce132f604ea538772414d9eaf (patch) | |
| tree | 3ddf9555b328cecce0c63d28f2f8462bb291468c | |
| parent | 1bc27558abf3fdb0378f5e1f916cedbc7c53802e (diff) | |
thank you message
| -rw-r--r-- | app/views/course/evaluation/index.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/course/evaluation/index.php b/app/views/course/evaluation/index.php index 24d6da6..9c69062 100644 --- a/app/views/course/evaluation/index.php +++ b/app/views/course/evaluation/index.php @@ -14,6 +14,10 @@ </h1> </header> + <?php if ($evaluation->isAnswered()) : ?> + <h2><?= _('Vielen Dank für Ihre Teilnahme!') ?></h2> + <?php endif ?> + <?php if ($evaluation->resultsVisible() || ($evaluation->isAnswerable() && $evaluation->isAnswered() )) : ?> <?= $this->render_partial('questionnaire/evaluate.php', ['questionnaire' => $evaluation, 'range_type' => 'course', 'range_id' => Context::getId()]) ?> |
