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

troubleshooting

parent e1d3492c
No related branches found
No related tags found
3 merge requests!74Acceptance,!73Master,!71troubleshooting
......@@ -44,7 +44,11 @@ def convert_logentries_to_html(log_entries):
for log in log_entries:
line = "<tr><td><b>" + log.step_name + '</b></td>'
line +='<td class="' + log.status + '" >' + log.status + "</td>"
try:
line += "<td>" + str(log.timestamp.strftime("%m-%d-%Y, %H:%M:%S")) + "</td>"
except:
line += "<td>no timetamp</td>"
line += "<td>" + str(log.cpu_cycles) + "</td>"
line += "<td>" + str(log.wall_clock_time) + "</td>"
if log.url_to_log_file!=None:
......
......@@ -80,7 +80,7 @@
{% include 'taskdatabase/pagination.html' %}
</div>
</div>
<p class="footer"> Version 1.0.0 (18 mar 2021 - 11:00)
<p class="footer"> Version 1.0.0 (18 mar 2021 - 12:00)
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment