mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-04 22:38:41 +00:00
27 lines
698 B
PHP
27 lines
698 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><?= $this->printHtml($card->getName()); ?></h1></header>
|
|
<div class="inner">
|
|
<?= $this->printHtml($card->getDescription()); ?>
|
|
</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">
|
|
<?= $this->printHtml($comment->getDescription()); ?>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|