mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-01-11 11:28:42 +00:00
27 lines
723 B
PHP
Executable File
27 lines
723 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="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; ?>
|