version 1.43.2.2, 2008/12/12 18:49:03
|
version 1.45, 2008/12/11 14:55:15
|
Line 82 sub real_handler {
|
Line 82 sub real_handler {
|
|
|
# Header |
# Header |
my $title = $showPoints ? "Points Display" : "Completed Problems Display"; |
my $title = $showPoints ? "Points Display" : "Completed Problems Display"; |
$r->print(&Apache::loncommon::start_page($title)); |
my @brcrum = [{href=>"/adm/quickgrades",text => "Points Display"}]; |
|
$r->print(&Apache::loncommon::start_page($title,undef,{bread_crumbs => @brcrum})); |
|
|
if (!$showPoints && !$notshowSPRSlink ) { |
if (!$showPoints && !$notshowSPRSlink ) { |
$r->print('<p>' |
$r->print('<p>' |
Line 255 sub real_handler {
|
Line 256 sub real_handler {
|
for (my $i = 1; $i < $depth; $i++) { $thisIndent .= $indentString; } |
for (my $i = 1; $i < $depth; $i++) { $thisIndent .= $indentString; } |
|
|
$r->print("$thisIndent$title</td>"); |
$r->print("$thisIndent$title</td>"); |
if ($totalAttempted) { |
if ($totalAttempted) { |
$r->print('<td valign="top">' |
$r->print('<td valign="top">' |
.$thisIndent |
.$thisIndent |
.'<span class="LC_nobreak">' |
.'<span class="LC_nobreak">' |
.$correct.' / '.$attempted.' / '.$total |
.$correct.' / '.$attempted.' / '.$total |
.'</span></td>'); |
.'</span></td>' |
} else { |
.&Apache::loncommon::end_data_table_row() |
$r->print('<td valign="top">' |
); |
|
} else { |
|
$r->print('<td valign="top">' |
.$thisIndent |
.$thisIndent |
.'<span class="LC_nobreak">' |
.'<span class="LC_nobreak">' |
.$correct.' / '.$total |
.$correct.' / '.$total |
.'</span></td>'); |
.'</span></td>' |
} |
.&Apache::loncommon::end_data_table_row()); |
$r->print(&Apache::loncommon::end_data_table_row()); |
} |
} |
} |
} |
} |
|
|