mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-09 08:48:41 +00:00
19 lines
663 B
PHP
Executable File
19 lines
663 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
$boards = $this->getData('boards');
|
|
|
|
echo $this->getData('nav')->render(); ?>
|
|
|
|
<div class="row">
|
|
<?php foreach ($boards as $board) : ?>
|
|
<div class="col-xs-12 col-sm-6 col-lg-3">
|
|
<a href="<?= $this->printHtml(\phpOMS\Uri\UriFactory::build('{/prefix}kanban/board?{?}&id=' . $board->getId())); ?>">
|
|
<section class="portlet">
|
|
<div class="portlet-head"><?= $this->printHtml($board->getName()); ?></div>
|
|
<div class="portlet-body">
|
|
<?= $this->printHtml($board->getDescription()); ?>
|
|
</div>
|
|
</section>
|
|
</a>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<div>
|