summaryrefslogtreecommitdiff
path: root/app/Templates/user_show.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-24 22:51:30 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-24 22:51:30 -0400
commit90e06162999c8ec7fa9bcfa391800f7907419d9b (patch)
treef0f8d4a760f25c4f7773e0a1851031db6b08b9f2 /app/Templates/user_show.php
parent180efb962c6fc4da47ed39e60db137d63ffaad5b (diff)
Rename Locales and Templates folders to be more consistent
Diffstat (limited to 'app/Templates/user_show.php')
-rw-r--r--app/Templates/user_show.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/Templates/user_show.php b/app/Templates/user_show.php
deleted file mode 100644
index 1c843751..00000000
--- a/app/Templates/user_show.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<div class="page-header">
- <h2><?= t('Summary') ?></h2>
-</div>
-<ul class="listing">
- <li><?= t('Username:') ?> <strong><?= Helper\escape($user['username']) ?></strong></li>
- <li><?= t('Name:') ?> <strong><?= Helper\escape($user['name']) ?></strong></li>
- <li><?= t('Email:') ?> <strong><?= Helper\escape($user['email']) ?></strong></li>
- <li><?= t('Default project:') ?> <strong><?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? Helper\escape($projects[$user['default_project_id']]) : t('None'); ?></strong></li>
- <li><?= t('Notifications:') ?> <strong><?= $user['notifications_enabled'] == 1 ? t('Enabled') : t('Disabled') ?></strong></li>
- <li><?= t('Group:') ?> <strong><?= $user['is_admin'] ? t('Administrator') : t('Regular user') ?></strong></li>
- <li><?= t('Account type:') ?> <strong><?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?></strong></li>
-</ul>