summaryrefslogtreecommitdiffstatshomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar mensonge2009-02-11 12:39:44 +0000
committerGravatar mensonge2009-02-11 12:39:44 +0000
commit44915a6e54843ccba31cc18c5a5ae469f253b1fd (patch)
tree6e45dc0f0d1df6ec094fa8677373cd602654359b /templates
parentfe83f9ea0eb58b7f5b2e034bf7ba9f855a73cb23 (diff)
downloadscuttle-44915a6e54843ccba31cc18c5a5ae469f253b1fd.tar.gz
scuttle-44915a6e54843ccba31cc18c5a5ae469f253b1fd.zip
Interface Fix: add bookmarks counting into admin page
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@273 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r--templates/admin.tpl.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/admin.tpl.php b/templates/admin.tpl.php
index ac288bd..c8d47e8 100644
--- a/templates/admin.tpl.php
+++ b/templates/admin.tpl.php
@@ -10,7 +10,8 @@ foreach($users as $user) {
echo '<li class="xfolkentry">'."\n";
echo '<div class="link">';
- echo '<a href="'.createURL('profile', $user->getUsername()).'">'.$user->getUsername().'</a>';
+ echo '<a href="'.createURL('profile', $user->getUsername()).'">'.$user->getUsername().'</a>';
+ echo ' - <span title='. T_('Public/Shared/Private') .'>'. $user->getNbBookmarks('public') .' / '. $user->getNbBookmarks('shared') .' / '. $user->getNbBookmarks('private') .' '. T_('bookmark(s)') .'</span>';
echo '</div>';
if($user->getUsername() != $currentUser->getUsername()) {