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

add retry button for finished_failed

parent cd986708
No related branches found
No related tags found
No related merge requests found
Pipeline #56415 passed
...@@ -15,4 +15,7 @@ ...@@ -15,4 +15,7 @@
{% endif %} {% endif %}
{% if task.status == "archived_failed" or task.status == "archiving_failed" %} {% if task.status == "archived_failed" or task.status == "archiving_failed" %}
<a href="{% url 'task-retry-view' task.pk 'scrubbed' my_tasks.number %}" class="btn btn-warning btn-sm" role="button"><b><i class="fas fa-sync-alt"></i> Retry</b></a> <a href="{% url 'task-retry-view' task.pk 'scrubbed' my_tasks.number %}" class="btn btn-warning btn-sm" role="button"><b><i class="fas fa-sync-alt"></i> Retry</b></a>
{% endif %}
{% if task.status == "finished_failed" or task.status == "finishing_failed" %}
<a href="{% url 'task-retry-view' task.pk 'finishing' my_tasks.number %}" class="btn btn-warning btn-sm" role="button"><b><i class="fas fa-sync-alt"></i> Retry</b></a>
{% endif %} {% endif %}
\ No newline at end of file
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