--- loncom/homework/grades.pm 2017/12/21 23:05:04 1.746
+++ loncom/homework/grades.pm 2017/12/21 23:20:48 1.747
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# The LON-CAPA Grading handler
#
-# $Id: grades.pm,v 1.746 2017/12/21 23:05:04 raeburn Exp $
+# $Id: grades.pm,v 1.747 2017/12/21 23:20:48 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -856,7 +856,7 @@ sub verifyreceipt {
sub listStudents {
my ($request,$symb,$submitonly) = @_;
- my $is_tool = ($symb =~ /ext\.tool$/);
+ my $is_tool = ($symb =~ /ext\.tool$/);
my $cdom = $env{"course.$env{'request.course.id'}.domain"};
my $cnum = $env{"course.$env{'request.course.id'}.num"};
my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
@@ -2635,7 +2635,7 @@ sub get_last_submission {
if (!@string) {
my $msg;
if ($is_tool) {
- $msg = &mt('Nothing passed back - no attempts.');
+ $msg = &mt('No grade passed back.');
} else {
$msg = &mt('Nothing submitted - no attempts.');
}
@@ -5110,6 +5110,7 @@ sub displaySubByDates {
my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
my $isCODE=0;
my $isTask = ($symb =~/\.task$/);
+ my $is_tool = ($symb =~/\.tool$/);
if (exists($record->{'resource.CODE'})) { $isCODE=1; }
my $studentTable=&Apache::loncommon::start_data_table().
&Apache::loncommon::start_data_table_header_row().
@@ -5124,7 +5125,11 @@ sub displaySubByDates {
my %orders;
$mark{'correct_by_student'} = $checkIcon;
if (!exists($$record{'1:timestamp'})) {
- return '
'.&mt('Nothing submitted - no attempts.').'
';
+ if ($is_tool) {
+ return '
'.&mt('No grade passed back.').'
';
+ } else {
+ return '
'.&mt('Nothing submitted - no attempts.').'
';
+ }
}
my $interaction;