blob: 054bde857032859ff77edaddcd7638c3c03d04ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{%extends "samples/sui-base.html"%}
{%from "cli-output.html" import cli_output%}
{%block title%}Job Status{%endblock%}
{%block contents%}
<div class="row" style="overflow-x: clip;">
<h2 class="heading">{{job.job_name[0:50]}}…</h2>
<p>
<strong>status</strong>:
<span>{{job["status"]}} ({{job.get("message", "-")}})</span><br />
</p>
<p>Successfully uploaded the samples.</p>
<p>
<a href="{{url_for('species.populations.samples.list_samples',
species_id=species.SpeciesId,
population_id=population.Id)}}"
title="View population samples">
View samples
</a>
</p>
</div>
<div class="row">
{{cli_output(job, "stdout")}}
</div>
{%endblock%}
|