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

accomodate 'deleted' and 'added' in the summary json

parent e5cf4bfe
No related branches found
No related tags found
No related merge requests found
Pipeline #40958 passed
......@@ -766,7 +766,7 @@ def construct_summary(task):
pass
try:
to_add = record['to_add']
to_add = record['added']
if to_add:
line += '<th>Added</th>'
line += '<tr><td colspan="3">'
......@@ -777,7 +777,7 @@ def construct_summary(task):
pass
try:
to_delete = record['to_delete']
to_delete = record['deleted']
if to_delete:
line += '<th>Deleted</th>'
line += '<tr><td colspan="3">'
......
......@@ -34,7 +34,7 @@
{% include 'taskdatabase/pagination.html' %}
</div>
</div>
<p class="footer"> Version 8 December 2022 - 15:00
<p class="footer"> Version 8 December 2022 - 16:00
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment