blob: 2d90137f838012583e2fab28c6e71d154c10e0a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php if (! empty($task['description'])): ?>
<div id="description" class="task-show-section">
<div class="page-header">
<h2><?= t('Description') ?></h2>
</div>
<article class="markdown task-show-description">
<?= Helper\parse($task['description']) ?: t('There is no description.') ?>
</article>
</div>
<?php endif ?>
|