Skip to content

Commit

Permalink
Hotfix: Fix incorrect tag in table from #78
Browse files Browse the repository at this point in the history
The incorrect tag ends the table row early, moving future <td> elements to a new row, messing up table formatting
  • Loading branch information
krishnans2006 committed Jan 8, 2025
1 parent f61e2ef commit c594194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tin/templates/assignments/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ <h2 style="border-top:1px solid lightgray;padding-top:15px;">Filter Submissions<
</tr>
{% for student, period, latest_submission, graded_submission, ended, quiz_issues in students_and_submissions %}
<tr>
<td style="text-align: center">{{ forloop.counter }}</tr>
<td style="text-align: center">{{ forloop.counter }}</td>
<td><a href="{% url 'assignments:student_submission' assignment.id student.id %}">{{ student.full_name }}
({{ student.username }})</a></td>
{% if not active_period.name %}
Expand Down

0 comments on commit c594194

Please sign in to comment.