--- loncom/homework/grades.pm 2007/06/16 02:35:22 1.411 +++ loncom/homework/grades.pm 2007/06/16 14:09:52 1.412 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # The LON-CAPA Grading handler # -# $Id: grades.pm,v 1.411 2007/06/16 02:35:22 www Exp $ +# $Id: grades.pm,v 1.412 2007/06/16 14:09:52 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -6363,8 +6363,21 @@ ENDHEADER $unknown_count++; } } - $result.='

 

'; - $result.=''."\n". + $result.='
'. + &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count); + if ($env{'form.gradingmechanism'} ne 'attendance') { + if ($correct_count==0) { + $errormsg.="Found no correct answers answers for grading!"; + } elsif ($correct_count>1) { + $result.='
'.&mt("Found [_1] entries for grading!").''; + } + } + if ($errormsg) { + $result.='
'.&mt($errormsg).''; + } else { + $result.='
'; + } + $result.=''."\n". '

'."\n"; return $result.&show_grading_menu_form($symb); }