mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-12 02:08:41 +00:00
27 lines
760 B
PHP
27 lines
760 B
PHP
<?php
|
|
$card = $this->getData('card');
|
|
$comments = $card->getComments();
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="box wf-100">
|
|
<header><h1><?= htmlspecialchars($card->getName(), ENT_COMPAT, 'utf-8'); ?></h1></header>
|
|
<div class="inner">
|
|
<?= htmlspecialchars($card->getDescription(), ENT_COMPAT, 'utf-8'); ?>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<?php foreach($comments as $comment) : ?>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="box wf-100">
|
|
<div class="inner">
|
|
<?= htmlspecialchars($comment->getDescription(), ENT_COMPAT, 'utf-8'); ?>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|