diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-02 15:06:41 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-02 15:06:41 -0500 |
commit | 37332ae2222706f8fb330dae780dc938512edcf5 (patch) | |
tree | 9161d539cc289179339162d6922c4d9dd2c30e63 /app/Template/user_index.php | |
parent | 8fe5df39d97ef851d11931fcf7e906ec08838ef7 (diff) |
Change layout (experimental)
Diffstat (limited to 'app/Template/user_index.php')
-rw-r--r-- | app/Template/user_index.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/Template/user_index.php b/app/Template/user_index.php index fc2b6307..73612b0b 100644 --- a/app/Template/user_index.php +++ b/app/Template/user_index.php @@ -1,9 +1,8 @@ <section id="main"> <div class="page-header"> - <h2><?= t('Users') ?><span id="page-counter"> (<?= $nb_users ?>)</span></h2> <?php if (Helper\is_admin()): ?> <ul> - <li><?= Helper\a(t('New user'), 'user', 'create') ?></li> + <li><i class="fa fa-plus fa-fw"></i><?= Helper\a(t('New user'), 'user', 'create') ?></li> </ul> <?php endif ?> </div> @@ -53,10 +52,10 @@ <td> <ul class="no-bullet"> <?php if ($user['google_id']): ?> - <li><i class="fa fa-google"></i> <?= t('Google account linked') ?></li> + <li><i class="fa fa-google fa-fw"></i><?= t('Google account linked') ?></li> <?php endif ?> <?php if ($user['github_id']): ?> - <li><i class="fa fa-github"></i> <?= t('Github account linked') ?></li> + <li><i class="fa fa-github fa-fw"></i><?= t('Github account linked') ?></li> <?php endif ?> </ul> </td> |