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

micro change to trigger build

parent 0f8dd966
No related branches found
No related tags found
2 merge requests!295merge all the updates to master into this branch also,!294adding (initial) discard mechanism
Pipeline #49288 passed
...@@ -829,8 +829,8 @@ def construct_summary(task): ...@@ -829,8 +829,8 @@ def construct_summary(task):
line += '<tr><td colspan="3">' line += '<tr><td colspan="3">'
for filename in added: for filename in added:
line += '<tr><td colspan="3">' + filename + '<td></tr>' line += '<tr><td colspan="3">' + filename + '<td></tr>'
except: except Exception as error:
pass print(error)
try: try:
deleted = record['deleted'] deleted = record['deleted']
...@@ -839,13 +839,15 @@ def construct_summary(task): ...@@ -839,13 +839,15 @@ def construct_summary(task):
for filename in deleted: for filename in deleted:
line += '<tr><td colspan="3">' +filename + '<td></tr>' line += '<tr><td colspan="3">' +filename + '<td></tr>'
except:
pass except Exception as error:
print(error)
results += line results += line
except:
pass except Exception as error:
print(error)
totals += '<th>Totals</th><th></th><th></th>' totals += '<th>Totals</th><th></th><th></th>'
totals += '<tr><td colspan="2"><b>Input size</b></td><td>' + str(total_size_input) + '</td></tr>' totals += '<tr><td colspan="2"><b>Input size</b></td><td>' + str(total_size_input) + '</td></tr>'
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
</div> </div>
<p class="footer"> Version 8 May 2023 <p class="footer"> Version 9 May 2023
</div> </div>
{% include 'taskdatabase/refresh.html' %} {% include 'taskdatabase/refresh.html' %}
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<a class="open-modal btn btn-primary btn-sm" <a class="open-modal btn btn-primary btn-sm"
href="{% url 'workflow-details' task.workflow.id %}" href="{% url 'workflow-details' task.workflow.id %}"
data-popup-url="{% url 'workflow-details' task.workflow.id %}" data-popup-url="{% url 'workflow-details' task.workflow.id %}"
target="_blank"><i class="fas fa-project-diagram"></i> {{ s.id }} target="_blank"><i class="fas fa-project-diagram"></i> {{ task.workflow.id }}
</a></td> </a></td>
</td> </td>
<td> <td>
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
{% if task.has_summary %} {% if task.has_summary %}
<td> <td>
<a class="open-modal btn btn-primary btn-sm" <a class="open-modal btn btn-primary btn-sm"
href="{% url 'summary' task.id my_tasks.number %}"
data-popup-url="{% url 'summary' task.id my_tasks.number %}"> data-popup-url="{% url 'summary' task.id my_tasks.number %}">
<img src="{% static 'taskdatabase/ldvlogo_small.png' %}" height="20" alt="summary"> SUM <img src="{% static 'taskdatabase/ldvlogo_small.png' %}" height="20" alt="summary"> SUM
</a>&nbsp; </a>&nbsp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment