diff options
author | Pjotr Prins | 2020-07-17 09:09:23 +0100 |
---|---|---|
committer | Pjotr Prins | 2020-07-17 09:09:23 +0100 |
commit | d3fa51ee16d902fc0bfa414611d5e0bae6618009 (patch) | |
tree | 37c809d651ec5639ea935c59b34e2e19b921855f /bh20simplewebuploader/templates/demo.html | |
parent | 2c1a907cbfe222d1deed8c31a44d3ea4c382bc3c (diff) | |
download | bh20-seq-resource-d3fa51ee16d902fc0bfa414611d5e0bae6618009.tar.gz bh20-seq-resource-d3fa51ee16d902fc0bfa414611d5e0bae6618009.tar.lz bh20-seq-resource-d3fa51ee16d902fc0bfa414611d5e0bae6618009.zip |
Refactoring map code
Diffstat (limited to 'bh20simplewebuploader/templates/demo.html')
-rw-r--r-- | bh20simplewebuploader/templates/demo.html | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/bh20simplewebuploader/templates/demo.html b/bh20simplewebuploader/templates/demo.html index 44aded0..2e290c6 100644 --- a/bh20simplewebuploader/templates/demo.html +++ b/bh20simplewebuploader/templates/demo.html @@ -5,8 +5,34 @@ {% include 'banner.html' %} {% include 'menu.html' %} {% include 'search.html' %} - <p>The Virtuoso database contains <span id="CounterDB"></span> public sequences!</p> - {% include 'demo-run.html' %} + <p>The Virtuoso database contains <span id="CounterDB"></span> public sequences!</p> + + <section class="search-section"> + <div class="filter-options" action="#"> + <p>[Demo] Display content sequences by: </p> + <div> + <button class="button" onclick="fetchSEQCountBySpecimen()">Count by Specimen source</button> + <button class="button" onclick="fetchSEQCountByLocation()">Count by Location</button> + <button class="button" onclick="fetchSEQCountByTech()">Count by Sequencer</button> + <!-- <button class="button" onclick="fetchAllaccessions()">Show All accessions</button> --> + <button class="button" onclick="fetchSEQCountbyContinent()">Count by Continent</button> + <button class="button" onclick="fetchMap()">Map</button> + </div> + + </div> + + </section> + <div id="loader" class="loader invisible"> + </div> + + <section id="map_view" class="invisible"> + <div id="map"></div> + </section> + + <section> + <div id="table"></div> + </section> + {% include 'footer.html' %} <script type="text/javascript"> |