aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/phenotypes/job-status.html
blob: d531a71a7789211247ac22a6e344f521f20b0446 (about) (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{%extends "phenotypes/base.html"%}
{%from "cli-output.html" import cli_output%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "macro-table-pagination.html" import table_pagination%}
{%from "phenotypes/macro-display-pheno-dataset-card.html" import display_pheno_dataset_card%}

{%block extrameta%}
{%if job and job.status not in ("success", "completed:success", "error", "completed:error")%}
<meta http-equiv="refresh" content="5" />
{%endif%}
{%endblock%}

{%block title%}Phenotypes{%endblock%}

{%block pagetitle%}Phenotypes{%endblock%}

{%block lvl4_breadcrumbs%}
<li {%if activelink=="add-phenotypes"%}
    class="breadcrumb-item active"
    {%else%}
    class="breadcrumb-item"
    {%endif%}>
  <a href="{{url_for('species.populations.phenotypes.add_phenotypes',
           species_id=species.SpeciesId,
           population_id=population.Id,
           dataset_id=dataset.Id)}}">View Datasets</a>
</li>
{%endblock%}

{%block contents%}

{%if job%}
<div class="row">
  <p><strong>Status:</strong> {{job.status}}</p>
  {%if job.status in ("completed:success", "success")%}
  <p><a href="#"
        class="not-implemented btn btn-primary"
        title="Continue to process data">Continue</a>
  </p>
  {%endif%}
</div>

<div class="row">
  {{cli_output(job, "stdout")}}
</div>

<div class="row">
  {{cli_output(job, "stderr")}}
</div>
{%else%}
<div class="row">
  <h3 class="text-danger">No Such Job</h3>
  <p>Could not find a job with the ID: {{job_id}}</p>
  <p>
    Please go back to
    <a href="{{url_for('species.populations.phenotypes.view_dataset',
             species_id=species.SpeciesId,
             population_id=population.Id,
             dataset_id=dataset.Id)}}"
       title="'{{dataset.Name}}' dataset page">
      the '{{dataset.Name}}' dataset page</a>
    to upload new phenotypes or edit existing ones.</p>
</div>
{%endif%}
{%endblock%}

{%block sidebarcontents%}
{{display_pheno_dataset_card(species, population, dataset)}}
{%endblock%}