*** empty log message ***

svn path=/trunk/boinc/; revision=1202
This commit is contained in:
David Anderson 2003-05-14 23:23:48 +00:00
parent e387506340
commit c1c0afc85b
1 changed files with 8 additions and 7 deletions

View File

@ -125,13 +125,14 @@ function team_table_start() {
}
function show_team_row($team, $i) {
echo "<tr>
<td>$i) <a href=team_display.php?teamid=$team->id>$team->name</a></td>
<td>$team->nusers</td>
<td>$team->expavg_credit</td>
<td>$team->total_credit</td>
<td>$team->country</td>
</tr>\n";
printf( "<tr>
<td>%d) <a href=team_display.php?teamid=%d>%s</a></td>
<td>%d</td>
<td>%.4f</td>
<td>%.4f</td>
<td>%s</td>
</tr>\n", $i, $team->id, $team->name, $team->nusers, $team->expavg_credit,
$team->total_credit, $team->country );
}
function team_edit_form($team, $label, $url) {