diff options
author | Aurélien <cadiou.aurelien@gmail.com> | 2018-04-02 23:07:04 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-04-02 14:07:04 -0700 |
commit | 5f7a3442d61b99e2fbad732bd0eaf9ad64398274 (patch) | |
tree | 78d2b159be9d2df92e28c90164430fdac2a4cac7 /app/Template/user_view/show.php | |
parent | bc4457c4cb096a448d88ca882d30bae15aff56c3 (diff) |
Add default filter per user
Diffstat (limited to 'app/Template/user_view/show.php')
-rw-r--r-- | app/Template/user_view/show.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Template/user_view/show.php b/app/Template/user_view/show.php index 7f847f65..39d10ab5 100644 --- a/app/Template/user_view/show.php +++ b/app/Template/user_view/show.php @@ -33,6 +33,7 @@ <ul class="panel"> <li><?= t('Timezone:') ?> <strong><?= $this->text->in($user['timezone'], $timezones) ?></strong></li> <li><?= t('Language:') ?> <strong><?= $this->text->in($user['language'], $languages) ?></strong></li> + <li><?= t('Filter:') ?> <strong><?= $this->text->e($user['filter']) ?></strong></li> <li><?= t('Notifications:') ?> <strong><?= $user['notifications_enabled'] == 1 ? t('Enabled') : t('Disabled') ?></strong></li> </ul> |