diff options
Diffstat (limited to 'application/views/scripts/role')
-rw-r--r-- | application/views/scripts/role/list.phtml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/application/views/scripts/role/list.phtml b/application/views/scripts/role/list.phtml new file mode 100644 index 0000000..352e3e2 --- /dev/null +++ b/application/views/scripts/role/list.phtml @@ -0,0 +1,65 @@ +<div class="controls separated"> + <?= $tabs ?> + <?= $this->paginator ?> + <div class="sort-controls-container"> + <?= $this->limiter ?> + <?= $this->sortBox ?> + </div> + <?= $this->filterEditor ?> +</div> +<div class="content"> + <?= $this->qlink( + $this->translate('Create a New Role') , + 'role/add', + null, + array( + 'class' => 'button-link', + 'data-base-target' => '_next', + 'icon' => 'plus', + 'title' => $this->translate('Create a new role') + ) + ) ?> +<?php /** @var \Icinga\Application\Config $roles */ if (! $roles->hasResult()): ?> + <p><?= $this->translate('No roles found.') ?></p> +<?php return; endif ?> + <table class="table-row-selectable common-table" data-base-target="_next"> + <thead> + <tr> + <th><?= $this->translate('Name') ?></th> + <th><?= $this->translate('Users') ?></th> + <th><?= $this->translate('Groups') ?></th> + <th><?= $this->translate('Inherits From') ?></th> + <th></th> + </tr> + </thead> + <tbody> +<?php foreach ($roles as $name => $role): /** @var object $role */ ?> + <tr> + <td> + <?= $this->qlink( + $name, + 'role/edit', + array('role' => $name), + array('title' => sprintf($this->translate('Edit role %s'), $name)) + ) ?> + </td> + <td><?= $this->escape($role->users) ?></td> + <td><?= $this->escape($role->groups) ?></td> + <td><?= $this->escape($role->parent) ?></td> + <td class="icon-col text-right"> + <?= $this->qlink( + '', + 'role/remove', + array('role' => $name), + array( + 'class' => 'action-link', + 'icon' => 'cancel', + 'title' => sprintf($this->translate('Remove role %s'), $name) + ) + ) ?> + </td> + </tr> +<?php endforeach ?> + </tbody> + </table> +</div> |