Skip to content

Commit

Permalink
SAK-30714 The student's grade does not appear in 'Assignment List by …
Browse files Browse the repository at this point in the history
…Student' when the grade is unreleased
  • Loading branch information
manuelal committed Apr 13, 2016
1 parent f76eab6 commit fcbfd78
Showing 1 changed file with 1 addition and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,33 +188,16 @@
 
</td>
<td headers="status">
#if ($!submission.Returned)
$tlang.getString("gen.returned")
#else
#if ($!submission.getGraded())
#if ($!submission.getGradeReleased())
$tlang.getString("gen.relea")
#else
$tlang.getString("gen.gra")
#end
#else
#if ($!submission.Submitted)
$tlang.getString("ungra")
#end
#end
#end
$submission.getStatus()
&nbsp;
</td>
#if ($withGrade)
<td headers="grade">
#if ($!submission.Graded && ($!submission.GradeReleased || $!submission.Returned))
##show grade when it is released or when submission is returned
#if ($assignment.getContent().TypeOfGrade == 1)
$tlang.getString("gen.nograd")
#else
$!submission.gradeDisplay
#end
#end
</td>
#end
</tr>
Expand Down

0 comments on commit fcbfd78

Please sign in to comment.