aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/populations/view-population.html
blob: 2ab7ca3525cc751ef5747248116649e8e9f25add (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
70
{%extends "populations/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}

{%block title%}Populations{%endblock%}

{%block pagetitle%}Populations{%endblock%}

{%block lvl3_breadcrumbs%}
<li {%if activelink=="view-population"%}
    class="breadcrumb-item active"
    {%else%}
    class="breadcrumb-item"
    {%endif%}>
  <a href="{{url_for('species.populations.view_population',
           species_id=species.SpeciesId,
           population_id=population.InbredSetId)}}">view population</a>
</li>
{%endblock%}


{%block contents%}
<div class="row">
  <h2>Population Details</h2>
  <dl>
    <dt>Name</dt>
    <dd>{{population.Name}}</dd>

    <dt>FullName</dt>
    <dd>{{population.FullName}}</dd>

    <dt>Description</dt>
    <dd>{{population.Description or "-"}}</dd>
  </dl>
</div>

<div class="row">
  <h3>Actions</h3>

  <p>
    Click any of the following links to use this population in performing the
    subsequent operations.
  </p>

  <nav class="nav">
    <ul>
      <li>
        <a href="#" title="Upload samples">upload samples</a>
      </li>
      <li>
        <a href="#" title="Upload expression data">upload expression data</a>
      </li>
      <li>
        <a href="#" title="Upload phenotype data">upload phenotype data</a>
      </li>
      <li>
        <a href="#" title="Upload individual data">upload individual data</a>
      </li>
      <li>
        <a href="#" title="Upload RNA-Seq data">upload RNA-Seq data</a>
      </li>
    </ul>
  </nav>
</div>
{%endblock%}

{%block sidebarcontents%}
<p>&hellip; maybe provide species details here, perhaps? &hellip;</p>
<p>&hellip; maybe provide extra population details here, perhaps? &hellip;</p>
{%endblock%}