Student Name

IT000
A
Course Course Name
Numeric Score 0/100
Letter Grade A
Status 🏆 Excellent ⭐ Excellent ✅ Very Good ✅ Good 👍 Passed ❌ Failed
Result ✅ Student has passed the course. ❌ Student has not passed the course.
Progress
0%

Key Thymeleaf attributes used on this page:


<!-- th:switch / th:case -->
<span th:switch="${student.letterGrade}">
    <span th:case="'A+'">🏆 Excellent</span>
    <span th:case="'A'">⭐ Excellent</span>
    <span th:case="*">Default case</span>  <!-- default -->
</span>

<!-- th:if / th:unless -->
<span th:if="${student.grade >= 50}">Passed</span>
<span th:unless="${student.grade >= 50}">Failed</span>

<!-- th:style – inline dynamic CSS -->
<div th:style="'width: ' + ${student.grade} + '%;'"></div>