Changeset 1414
- Timestamp:
- 08/02/05 17:03:04 (8 years ago)
- File:
-
- 1 edited
-
trunk/bureau/admin/stats_show_per_month.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bureau/admin/stats_show_per_month.php
r1413 r1414 35 35 $count = ($_GET['count'] ? $_GET['count'] % 100: 12); 36 36 ?> 37 <style> 38 .right { text-align: right; } 39 </style> 37 40 </head> 38 41 <body> 39 42 <h3><?php __("Bandwidth usage in the last $count months"); ?></h3> 40 43 41 <?php42 43 ?>44 44 <form method="GET"> 45 45 Months: <input type="text" size="3" name="count" value="<?=$count?>"> … … 56 56 57 57 $class = ($class== 'lst1' ? 'lst2' : 'lst1'); 58 print "<table><tr class=\"$class\"><td >"._("User")."</td>";58 print "<table><tr class=\"$class\"><td class=\"right\">"._("User")."</td>"; 59 59 60 60 // figure out YYYY-MM for the last N months … … 110 110 if (!is_null($current_user)) { // not the first time we enter this block 111 111 $class = ($class== 'lst1' ? 'lst2' : 'lst1'); 112 print "<tr class=\"$class\"><td ><acronym title=\"$current_user\">".$db->f("login")."</acronym></td>\n";112 print "<tr class=\"$class\"><td class=\"right\"><acronym title=\"$current_user\">".$db->f("login")."</acronym></td>\n"; 113 113 foreach ($months as $m) { 114 114 print "<td>" . m_quota::display_val('bw_web', $entries[$m]) . "</td>\n"; … … 125 125 print "</tr>\n"; 126 126 127 print "<tr><td >Total</td>";127 print "<tr><td class=\"right\">"._("Total")."</td>"; 128 128 129 129 foreach ($monthly_size as $m => $size) {
Note: See TracChangeset
for help on using the changeset viewer.
