Skip to content
Snippets Groups Projects
Commit a61c1aa9 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

bugfix, missing '>'' in summary screen misaligned 'deleted' row.

parent 52465f38
Branches
No related tags found
No related merge requests found
Pipeline #41810 passed
......@@ -783,7 +783,7 @@ def construct_summary(task):
line += '<th>Added</th>'
line += '<tr><td colspan="3">'
for filename in added:
line += '<tr><td colspan="3">' + filename + '<td</tr>'
line += '<tr><td colspan="3">' + filename + '<td></tr>'
except:
pass
......@@ -792,7 +792,7 @@ def construct_summary(task):
if deleted:
line += '<th>Deleted</th>'
for filename in deleted:
line += '<tr><td colspan="3">' +filename + '<td</tr>'
line += '<tr><td colspan="3">' +filename + '<td></tr>'
except:
pass
......
......@@ -34,7 +34,7 @@
{% include 'taskdatabase/pagination.html' %}
</div>
</div>
<p class="footer"> Version 16 December 2022 - 11:00
<p class="footer"> Version 22 December 2022 - 10:00
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment