diff options
author | Thomas Lange <code@nerdmind.de> | 2017-11-02 23:55:29 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-11-02 23:55:29 +0100 |
commit | 29ead287180d2bc21cc5a5e70298827e1970aee3 (patch) | |
tree | 20192bceabf50c60a5f211b7839b53ebb314a686 /template/admin/html/user/index.php | |
parent | 0f2c5a5496cadafaf6b6a20b6f52b654c8291354 (diff) | |
download | blog-29ead287180d2bc21cc5a5e70298827e1970aee3.tar.gz blog-29ead287180d2bc21cc5a5e70298827e1970aee3.tar.xz blog-29ead287180d2bc21cc5a5e70298827e1970aee3.zip |
A new action link has been added to the item overview pages and the CSS was optimized to give them a new look.
Diffstat (limited to 'template/admin/html/user/index.php')
-rw-r--r-- | template/admin/html/user/index.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/template/admin/html/user/index.php b/template/admin/html/user/index.php index e1e24ef..aae8ee8 100644 --- a/template/admin/html/user/index.php +++ b/template/admin/html/user/index.php @@ -1,8 +1,8 @@ -<h1> - <i class="fa fa-user"></i><?=$Language->text('user_overview')?> - <a class="brackets" href="<?=Application::getAdminURL("user/insert.php")?>"><?=$Language->text('insert')?></a> -</h1> -<p><?=$Language->text('overview_user_desc')?></p> +<h1><i class="fa fa-user"></i><?=$Language->text('user_overview')?></h1> +<p class="actions-before"><?=$Language->text('overview_user_desc')?></p> +<ul class="actions"> + <li><a href="<?=Application::getAdminURL('user/insert.php')?>" title="<?=$Language->text('insert_user')?>"><i class="fa fa-pencil-square-o"></i><?=$Language->text('insert')?></a></li> +</ul> <div class="item-container user"> <?php foreach($LIST['USERS'] as $user): ?> |