diff options
| author | 2014-10-16 16:43:37 +0200 | |
|---|---|---|
| committer | 2014-10-17 16:24:21 +0200 | |
| commit | 2796cc9ae559842a90fa15cba65c94a11b29195e (patch) | |
| tree | 0dc742153cba0b4c45c15b255047b71188449f73 /app/views/user | |
| parent | c5fe3bd6593d0a07c087d1e60ae2e4b8ab5f9fa9 (diff) | |
User list load a new page
Beginning of more options for administrator!
Diffstat (limited to 'app/views/user')
| -rw-r--r-- | app/views/user/manage.phtml | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/app/views/user/manage.phtml b/app/views/user/manage.phtml index 03746cabb..fb569872b 100644 --- a/app/views/user/manage.phtml +++ b/app/views/user/manage.phtml @@ -3,27 +3,6 @@ <div class="post"> <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('back_to_rss_feeds'); ?></a> - <form method="post" action="<?php echo _url('user', 'delete'); ?>"> - <legend><?php echo _t('users'); ?></legend> - - <div class="form-group"> - <label class="group-name" for="users_list"><?php echo _t('users_list'); ?></label> - <div class="group-controls"> - <select id="users_list" name="username"><?php - foreach (listUsers() as $user) { - echo '<option>', $user, '</option>'; - } - ?></select> - </div> - </div> - - <div class="form-group form-actions"> - <div class="group-controls"> - <button type="submit" class="btn btn-attention confirm"><?php echo _t('delete'); ?></button> - </div> - </div> - </form> - <form method="post" action="<?php echo _url('user', 'create'); ?>"> <legend><?php echo _t('create_user'); ?></legend> @@ -71,6 +50,26 @@ <button type="reset" class="btn"><?php echo _t('cancel'); ?></button> </div> </div> + </form> + + <form method="post" action="<?php echo _url('user', 'delete'); ?>"> + <legend><?php echo _t('users'); ?></legend> + <div class="form-group"> + <label class="group-name" for="user-list"><?php echo _t('users_list'); ?></label> + <div class="group-controls"> + <select id="user-list" class="select-change" name="username"> + <?php foreach (listUsers() as $username) { ?> + <option data-url="<?php echo _url('user', 'manage', 'u', $username); ?>" <?php echo $this->current_user === $username ? 'selected="selected"' : ''; ?> value="<?php echo $username; ?>"><?php echo $username; ?></option> + <?php } ?> + </select> + </div> + </div> + + <div class="form-group form-actions"> + <div class="group-controls"> + <button type="submit" class="btn btn-attention confirm"><?php echo _t('delete'); ?></button> + </div> + </div> </form> </div> |
