mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-05 06:48:41 +00:00
27 lines
728 B
PHP
Executable File
27 lines
728 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
$card = $this->getData('card');
|
|
$comments = $card->getComments();
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<div class="portlet-head"><?= $this->printHtml($card->name); ?></div>
|
|
<div class="portlet-body">
|
|
<article><?= $card->description; ?></article>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<?php foreach ($comments as $comment) : ?>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<section class="portlet">
|
|
<div class="portlet-body">
|
|
<article><?= $comment->description; ?></article>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|