diff options
| author | 2015-07-22 14:02:38 +0200 | |
|---|---|---|
| committer | 2015-07-22 14:02:38 +0200 | |
| commit | 8754347a586ff595553bf00f8e70f96706760956 (patch) | |
| tree | d89d02562db9b8d2dbba32d73aaaf30e4150fa52 | |
| parent | f560c44a003ca69644f8e7262dca2f8f7e6932d5 (diff) | |
Show the number of accounts in admin
See https://github.com/FreshRSS/FreshRSS/issues/679
| -rw-r--r-- | app/views/user/manage.phtml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/user/manage.phtml b/app/views/user/manage.phtml index a7cbf0795..61b296528 100644 --- a/app/views/user/manage.phtml +++ b/app/views/user/manage.phtml @@ -14,6 +14,12 @@ </div> </div> + <div class="form-group"> + <div class="group-controls"> + <?php echo _t('admin.user.number', count(listUsers())); ?> + </div> + </div> + <div class="form-group form-actions"> <div class="group-controls"> <button type="submit" class="btn btn-important"><?php echo _t('gen.action.submit'); ?></button> |
