Changeset 1414 for trunk/bureau

Show
Ignore:
Timestamp:
08/02/05 17:03:04 (3 years ago)
Author:
anarcat
Message:

enlever des trucs qui trainent
aligner les usernames a droite

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bureau/admin/stats_show_per_month.php

    r1413 r1414  
    3535$count = ($_GET['count'] ? $_GET['count'] % 100: 12); 
    3636?> 
     37<style> 
     38.right { text-align: right; } 
     39</style> 
    3740</head> 
    3841<body> 
    3942<h3><?php __("Bandwidth usage in the last $count months"); ?></h3> 
    4043 
    41 <?php 
    42  
    43 ?> 
    4444<form method="GET"> 
    4545Months: <input type="text" size="3" name="count" value="<?=$count?>"> 
     
    5656 
    5757$class = ($class== 'lst1' ? 'lst2' : 'lst1'); 
    58 print "<table><tr class=\"$class\"><td>"._("User")."</td>"; 
     58print "<table><tr class=\"$class\"><td class=\"right\">"._("User")."</td>"; 
    5959 
    6060// figure out YYYY-MM for the last N months 
     
    110110    if (!is_null($current_user)) { // not the first time we enter this block 
    111111      $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"; 
    113113      foreach ($months as $m) { 
    114114        print "<td>" . m_quota::display_val('bw_web', $entries[$m]) . "</td>\n"; 
     
    125125print "</tr>\n"; 
    126126 
    127 print "<tr><td>Total</td>"; 
     127print "<tr><td class=\"right\">"._("Total")."</td>"; 
    128128 
    129129foreach ($monthly_size as $m => $size) {