看板初始化提交
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Add group member to "%s"', $group['name']) ?></h2>
|
||||
</div>
|
||||
<?php if (empty($users)): ?>
|
||||
<p class="alert"><?= t('There is no user available.') ?></p>
|
||||
<div class="form-actions">
|
||||
<?= $this->url->link(t('Close this window'), 'GroupListController', 'index', array(), false, 'btn js-modal-close') ?>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<form method="post" action="<?= $this->url->href('GroupListController', 'addUser', array('group_id' => $group['id'])) ?>" autocomplete="off">
|
||||
<?= $this->form->csrf() ?>
|
||||
<?= $this->form->hidden('group_id', $values) ?>
|
||||
|
||||
<?= $this->form->label(t('User'), 'user_id') ?>
|
||||
<?= $this->app->component('select-dropdown-autocomplete', array(
|
||||
'name' => 'user_id',
|
||||
'items' => $users,
|
||||
'defaultValue' => isset($values['user_id']) ? $values['user_id'] : key($users),
|
||||
)) ?>
|
||||
|
||||
<?= $this->modal->submitButtons() ?>
|
||||
</form>
|
||||
<?php endif ?>
|
||||
Reference in New Issue
Block a user