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