mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
8 lines
342 B
PHP
8 lines
342 B
PHP
<div class="project-overview-columns">
|
|
<?php foreach ($project['columns'] as $column): ?>
|
|
<div class="project-overview-column">
|
|
<strong title="<?= t('Task count') ?>"><?= $column['nb_tasks'] ?></strong><br>
|
|
<span><?= $this->text->e($column['title']) ?></span>
|
|
</div>
|
|
<?php endforeach ?>
|
|
</div>
|