Skip to content

Commit c594194

Browse files
committed
Hotfix: Fix incorrect tag in table from #78
The incorrect tag ends the table row early, moving future <td> elements to a new row, messing up table formatting
1 parent f61e2ef commit c594194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tin/templates/assignments/show.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ <h2 style="border-top:1px solid lightgray;padding-top:15px;">Filter Submissions<
128128
</tr>
129129
{% for student, period, latest_submission, graded_submission, ended, quiz_issues in students_and_submissions %}
130130
<tr>
131-
<td style="text-align: center">{{ forloop.counter }}</tr>
131+
<td style="text-align: center">{{ forloop.counter }}</td>
132132
<td><a href="{% url 'assignments:student_submission' assignment.id student.id %}">{{ student.full_name }}
133133
({{ student.username }})</a></td>
134134
{% if not active_period.name %}

0 commit comments

Comments
 (0)