blob: a3e1979d6651389aadf54f0c05e569c34c78fdd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* @var Statusgruppen[] $groups
*/
?>
<? if ($groups): ?>
<ol class="dd-list">
<? foreach ($groups as $group): ?>
<li class="dd-item" data-id="<?= $group->id ?>">
<div class="dd-handle"><?= formatReady($group->name) ?></div>
<?= $this->render_partial('admin/statusgroups/_group-nestable', ['groups' => $group->children]) ?>
</li>
<? endforeach; ?>
</ol>
<? endif; ?>
|