mirror of https://github.com/BOINC/boinc.git
admin web: appearance tweaks
This commit is contained in:
parent
80d792265b
commit
4b918967b8
|
@ -57,29 +57,30 @@ $result = _mysql_query($query);
|
|||
$n = 0;
|
||||
echo "<form action=profile_screen_action.php>
|
||||
";
|
||||
start_table();
|
||||
$found = false;
|
||||
while ($profile = _mysql_fetch_object($result)) {
|
||||
$found = true;
|
||||
echo "<tr><td valign=top>";
|
||||
start_table();
|
||||
echo "<tr><td valign=top width=20%>";
|
||||
buttons($n);
|
||||
echo "
|
||||
<br>
|
||||
<br>Name: $profile->name
|
||||
<br>recommends: $profile->recommend
|
||||
<br>rejects: $profile->reject
|
||||
<br>RAC: $profile->expavg_credit
|
||||
<br>RAC: ".format_credit($profile->expavg_credit)."
|
||||
<br>
|
||||
";
|
||||
echo "</td><td>";
|
||||
start_table();
|
||||
show_profile($profile, $g_logged_in_user, true);
|
||||
end_table();
|
||||
echo "</td></tr><tr><td colspan=2><hr/></td></tr>\n";
|
||||
echo "</td></tr><tr><td colspan=2></td></tr>\n";
|
||||
echo "<input type=\"hidden\" name=\"userid$n\" value=\"$profile->userid\">\n";
|
||||
$n++;
|
||||
end_table();
|
||||
}
|
||||
|
||||
end_table();
|
||||
|
||||
if ($found) {
|
||||
echo "
|
||||
|
|
Loading…
Reference in New Issue