diff options
author | spocky <spocky@ampache> | 2007-10-16 20:26:16 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-10-16 20:26:16 +0000 |
commit | 15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f (patch) | |
tree | 0d16eb9fb44337d4176af2ca42c3ca070b878113 /templates/show_users.inc.php | |
parent | 4b58b3e218d2e926d7bb0e4d07be2877853de689 (diff) | |
download | ampache-15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f.tar.gz ampache-15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f.tar.bz2 ampache-15c56f21f2a74c8d25e8d74b2cc4b4020e9db74f.zip |
- hardcoded disk# sort order when sort is set to album name
- removed pager from browse table
- added footer to browse tables
- updated browse files for better customization
- modified css
Diffstat (limited to 'templates/show_users.inc.php')
-rw-r--r-- | templates/show_users.inc.php | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/templates/show_users.inc.php b/templates/show_users.inc.php index 8b44a75f..a9e5fbd4 100644 --- a/templates/show_users.inc.php +++ b/templates/show_users.inc.php @@ -22,37 +22,27 @@ $web_path = Config::get('web_path'); ?> +<?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> <table class="tabledata" cellpadding="0" cellspacing="0"> -<tr class="table-header" align="center"> - <th colspan="11"> - <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> - </th> -</tr> -<tr class="table-header"> - <th> - <?php echo _('Fullname'); ?> - (<?php echo _('Username'); ?>) - </th> - <th> - <?php echo _('Last Seen'); ?> - </th> - <th> - <?php echo _('Registration Date'); ?> - </th> - <th> - <?php echo _('Activity'); ?> - </th> +<colgroup> + <col id="br_username" /> + <col id="br_lastseen" /> + <col id="br_registrationdate" /> + <col id="br_activity" /> + <col id="br_lastip" /> + <col id="br_action" /> + <col id="br_online" /> +</colgroup> +<tr class="table-header th-top"> + <th><?php echo _('Fullname'); ?>(<?php echo _('Username'); ?>)</th> + <th><?php echo _('Last Seen'); ?></th> + <th><?php echo _('Registration Date'); ?></th> + <th><?php echo _('Activity'); ?></th> <?php if (Config::get('track_user_ip')) { ?> - <th> - <?php echo _('Last Ip'); ?> - </th> + <th><?php echo _('Last Ip'); ?></th> <?php } ?> - <th> - <?php echo _('Action'); ?> - </th> - <th> - <?php echo _('On-line'); ?> - </th> + <th><?php echo _('Action'); ?></th> + <th><?php echo _('On-line'); ?></th> </tr> <?php foreach ($object_ids as $user_id) { @@ -112,4 +102,15 @@ foreach ($object_ids as $user_id) { ?> </tr> <?php } //end foreach users ?> +<tr class="table-header th-bottom"> + <th><?php echo _('Fullname'); ?>(<?php echo _('Username'); ?>)</th> + <th><?php echo _('Last Seen'); ?></th> + <th><?php echo _('Registration Date'); ?></th> + <th><?php echo _('Activity'); ?></th> + <?php if (Config::get('track_user_ip')) { ?> + <th><?php echo _('Last Ip'); ?></th> + <?php } ?> + <th><?php echo _('Action'); ?></th> + <th><?php echo _('On-line'); ?></th> +</tr> </table> |