diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-28 06:49:29 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-28 06:49:29 +0000 |
commit | cad6aca40feafa7adbe6066772afbe225dbfe30c (patch) | |
tree | b1f95ec59dffefa0c6a07fec3581832bd14cebf3 /templates/show_users.inc | |
parent | ebdb7573bf4176b81264d2c66dd567fa3c3ee0bd (diff) | |
download | ampache-cad6aca40feafa7adbe6066772afbe225dbfe30c.tar.gz ampache-cad6aca40feafa7adbe6066772afbe225dbfe30c.tar.bz2 ampache-cad6aca40feafa7adbe6066772afbe225dbfe30c.zip |
removed images that were not being used, added icons and started the iconification!
Diffstat (limited to 'templates/show_users.inc')
-rw-r--r-- | templates/show_users.inc | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/templates/show_users.inc b/templates/show_users.inc index a6e6442b..dd0d7b0a 100644 --- a/templates/show_users.inc +++ b/templates/show_users.inc @@ -54,7 +54,8 @@ $admin_menu = "admin/"; <b><?php echo _("Registration Date"); ?></b> </a> </td> - + <td colspan="5"> </td> + <!-- <td align="center"> <b><?php echo _("Edit"); ?></b> </td> @@ -70,6 +71,7 @@ $admin_menu = "admin/"; <td align="center"> <b><?php echo _("Delete"); ?></b> </td> + --> <td align="center"> <b><?php echo _("On-line"); ?></b> </td> @@ -83,46 +85,46 @@ while ($results = mysql_fetch_object($db_result)) { if (!$user->create_date) { $create_date = "Unknown"; } ?> -<tr class="<?php echo flip_class(); ?>"> - <td> - <a href="<?php echo $web_path; ?>/admin/users.php?action=edit&user=<?php echo $user->username; ?>"> +<tr class="<?php echo flip_class(); ?>" align="center"> + <td align="left"> + <a href="<?php echo $web_path; ?>/admin/users.php?action=edit&user=<?php echo $user->id; ?>"> <?php echo $user->fullname; ?> (<?php echo $user->username; ?>) </a> </td> - <td align="center"> + <td> <?php echo $last_seen; ?> </td> - <td align="center"> + <td> <?php echo $create_date; ?> </td> <td> <a href="<?php echo $web_path; ?>/admin/users.php?action=edit&user=<?php echo $user->username; ?>"> - <?php echo _("Edit"); ?> + <?php echo get_user_icon('edit'); ?> </a> </td> <td> <a href="<?php echo $web_path; ?>/admin/preferences.php?action=user&user_id=<?php echo $user->username; ?>"> - <?php echo _("Prefs"); ?> + <?php echo get_user_icon('preferences'); ?> </a> </td> <td> <a href="<?php echo $web_path; ?>/stats.php?user_id=<?php echo $user->username; ?>"> - <?php echo _("Stats"); ?> + <?php echo get_user_icon('statistics'); ?> </a> </td> <?php //FIXME: Fix this for the extra permission levels if ($user->disabled == '1') { - echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=enabled\">" . _("Enable") . "</a></td>"; + echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=enabled\">" . get_user_icon('enable') . "</a></td>"; } else { - echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=disabled\">" . _("Disable") ."</a></td>"; + echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=disabled\">" . get_user_icon('disable') ."</a></td>"; } ?> <td> <a href="<?php echo $web_path; ?>/admin/users.php?action=delete&user=<?php echo $user->username; ?>"> - <?php echo _("delete"); ?> + <?php echo get_user_icon('delete'); ?> </a> </td> <?php |