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