= $this->Html->link(__('New User'), ['action' => 'add'], ['class' => 'button float-right']) ?>
= __('Users') ?>
| = $this->Paginator->sort('id') ?> |
= $this->Paginator->sort('uuid') ?> |
= $this->Paginator->sort('role_id') ?> |
= $this->Paginator->sort('email') ?> |
= $this->Paginator->sort('is_active') ?> |
= $this->Paginator->sort('created') ?> |
= $this->Paginator->sort('modified') ?> |
= __('Actions') ?> |
| = $this->Number->format($user->id) ?> |
= h($user->uuid) ?> |
= $user->has('role') ? $this->Html->link($user->role->name, ['controller' => 'Roles', 'action' => 'view', $user->role->id]) : '' ?> |
= h($user->email) ?> |
= h($user->is_active) ?> |
= h($user->created) ?> |
= h($user->modified) ?> |
= $this->Html->link(__('View'), ['action' => 'view', $user->uuid]) ?>
= $this->Html->link(__('Edit'), ['action' => 'edit', $user->uuid]) ?>
= $this->Form->postLink(__('Delete'), ['action' => 'delete', $user->uuid], ['confirm' => __('Are you sure you want to delete # {0}?', $user->uuid)]) ?>
|
= $this->Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>