aboutsummaryrefslogtreecommitdiff
path: root/app/views/vips/exercises/show_exercise_hint.php
blob: 8d686471e920b7862dd1539e7a7c23807b7ae0b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 * @var Exercise $exercise
 */
?>
<? if (isset($exercise->options['hint']) && $exercise->options['hint'] !== ''): ?>
    <div class="exercise_hint inline-content">
        <h4><?= _('Hinweis:') ?></h4>
        <?= formatReady($exercise->options['hint']) ?>
    </div>
    <br>
<? endif ?>