mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
11 lines
381 B
PHP
11 lines
381 B
PHP
|
<?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 ?>
|