blob: e7ceb364990f61fca04ebef31786d3fbad799bfe (
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
|
{%extends "genotypes/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "populations/macro-display-population-card.html" import display_population_card%}
{%block title%}Genotypes: View Dataset{%endblock%}
{%block pagetitle%}Genotypes: View Dataset{%endblock%}
{%block lvl4_breadcrumbs%}
<li {%if activelink=="view-dataset"%}
class="breadcrumb-item active"
{%else%}
class="breadcrumb-item"
{%endif%}>
<a href="{{url_for('species.populations.genotypes.view_dataset',
species_id=species.SpeciesId,
population_id=population.Id,
dataset_id=dataset.Id)}}">view dataset</a>
</li>
{%endblock%}
{%block contents%}
{{flash_all_messages()}}
<div class="row">
<h2>Genotype Dataset Details</h2>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Full Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{dataset.Name}}</td>
<td>{{dataset.FullName}}</td>
</tr>
</tbody>
</table>
</div>
<div class="row text-warning">
<h2>Assembly Details</h2>
<p>Maybe include the assembly details here if found to be necessary.</p>
</div>
<div class="row">
<h2>Genotype Data</h2>
<p class="text-danger">
Provide link to enable uploading of genotype data here.</p>
</div>
{%endblock%}
{%block sidebarcontents%}
{{display_population_card(species, population)}}
{%endblock%}
|