Skip to content
Snippets Groups Projects

Joby naplánované na konkrétní čas

Merged Martin Mareš requested to merge mj/schedule-jobs into devel

Files

+ 12
5
@@ -49,10 +49,17 @@
{% endif %}
{% if job.out_file %}
<a class='btn btn-primary' href='{{ url_for('org_job_output', id=job.job_id) }}'>Stáhnout výstup</a>
{% elif result_url %}
<a class='btn btn-primary' href='{{ result_url }}'>{{ result_url_action }}</a>
{% endif %}
<form action="" method="POST">
{{ form.csrf_token() }}
<div class="btn-group">
{% if job.out_file %}
<a class='btn btn-primary' href='{{ url_for('org_job_output', id=job.job_id) }}'>Stáhnout výstup</a>
{% elif result_url %}
<a class='btn btn-primary' href='{{ result_url }}'>{{ result_url_action }}</a>
{% endif %}
<input type="submit" name="delete" value="Smazat dávku" class="btn btn-danger">
<a class='btn btn-default' href='{{ return_url }}'>Zpět</a>
</div>
</form>
{% endblock %}
Loading