blob: 105c4f95145daf05ebd4d01650993f855cdccc54 (
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
|
<div>
<br>
<h2>Charts and Figures</h2>
<div class="well form-horizontal">
{% if sample_groups|length > 1 %}
<select class="stats_samples_group">
{% for group, pretty_group in sample_group_types.items() %}
<option value="{{ group }}">{{ pretty_group }}</option>
{% endfor %}
</select>
{% endif %}
{% if sample_groups[0].attributes %}
<div class="input-append">
<select id="color_attribute" size=1>
<option value="None">None</option>
{% for attribute in sample_groups[0].attributes %}
<option value="{{ sample_groups[0].attributes[attribute].name.replace(' ', '_') }}">
{{ sample_groups[0].attributes[attribute].name }}</option>
{% endfor %}
</select>
</div>
{% endif %}
<button type="button" id="update_bar_chart">Sort By Value</button>
<div id="bar_chart_container">
<div id="bar_chart"></div>
</div>
</div>
</div>
|