aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/samples/upload-success.html
blob: 881d466d9dec012d6ee4e1f392f84a02c41f9d73 (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
32
33
34
35
36
{%extends "samples/base.html"%}
{%from "cli-output.html" import cli_output%}
{%from "populations/macro-display-population-card.html" import display_population_card%}

{%block title%}Job Status{%endblock%}

{%block contents%}

<div class="row" style="overflow-x: clip;">
  <h2 class="heading">{{job.job_name[0:50]}}&hellip;</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%}

{%block sidebarcontents%}
{{display_population_card(species, population)}}
{%endblock%}