aboutsummaryrefslogtreecommitdiff
path: root/web/app/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/templates/home.html')
-rw-r--r--web/app/templates/home.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/templates/home.html b/web/app/templates/home.html
index 7caff64..0ecad44 100644
--- a/web/app/templates/home.html
+++ b/web/app/templates/home.html
@@ -65,7 +65,7 @@
{% for job in completed_jobs %}
<tr>
<td>{{ job['name'] }}</td>
- <td>COMPLETED</td>
+ <td>JobStatus.COMPLETED</td>
<td><a href="{{ url_for('main.download_output', filename=job['name']) }}">Download</a></td>
</tr>
{% endfor %}
@@ -73,7 +73,7 @@
<tr>
<td>{{ job.args[0] }}</td>
<td>{{ job._status }}</td>
- <td><a href="{{ url_for('main.download_output', filename=job.args[0]) }}">Download</a></td>
+ <td>Not Available</td>
</tr>
{% endfor %}
</tbody>