--- loncom/homework/grades.pm 2003/12/11 13:51:09 1.170 +++ loncom/homework/grades.pm 2004/01/28 16:25:05 1.171 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # The LON-CAPA Grading handler # -# $Id: grades.pm,v 1.170 2003/12/11 13:51:09 albertel Exp $ +# $Id: grades.pm,v 1.171 2004/01/28 16:25:05 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -738,9 +738,12 @@ LISTJAVASCRIPT if ($num_students eq 0) { $gradeTable='
 There are no students currently enrolled.'; } else { + my $submissions='submissions'; + if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; } + if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; } $gradeTable='
 '. - 'No submissions found for this resource for any students. ('.$num_students. - ' checked for submissions)
'; + 'No '.$submissions.' found for this resource for any students. ('.$num_students. + ' students checked for '.$submissions.')
'; } } elsif ($ctr == 1) { $gradeTable =~ s/type=checkbox/type=checkbox checked/;