--- loncom/interface/lonquickgrades.pm 2010/12/03 21:33:52 1.55 +++ loncom/interface/lonquickgrades.pm 2010/12/03 22:00:28 1.56 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Quick Student Grades Display # -# $Id: lonquickgrades.pm,v 1.55 2010/12/03 21:33:52 www Exp $ +# $Id: lonquickgrades.pm,v 1.56 2010/12/03 22:00:28 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -121,24 +121,24 @@ sub startGradeScreen { my $allowed_to_edit = &Apache::lonnet::allowed('mgr',$env{'request.course.id'}); if ($allowed_to_view) { - $r->print(''); - if ($notshowTotals) { $r->print (''); } - if ($notshowSPRSlink){ $r->print (''); } - if ($showPoints) { $r->print (''); } - if ($showCategories) { $r->print (''); } - $r->print('
'.&mt('Students do not see total points.').''.&mt('Students do not see link to spreadsheet.').''.&mt('Students will see points based on problem weights.').''.&mt('Students will see points based on categories.').''.&Apache::lonhtmlcommon::coursepreflink(&mt('Grade display settings'),'grading').'
'); + $r->print('
'); + if ($notshowTotals) { $r->print (' '.&mt('Students do not see total points.').' '); } + if ($notshowSPRSlink){ $r->print (' '.&mt('Students do not see link to spreadsheet.').' '); } + if ($showPoints) { $r->print (' '.&mt('Students will see points based on problem weights.').' '); } + if ($showCategories) { $r->print (' '.&mt('Students will see points based on categories.').' '); } + $r->print(' '.&Apache::lonhtmlcommon::coursepreflink(&mt('Grade display settings'),'grading').'
'); } - $r->print(''."\n"); $r->print('
'); }