diff options
author | zsloan | 2022-01-26 20:55:37 +0000 |
---|---|---|
committer | zsloan | 2022-01-27 13:45:09 -0600 |
commit | b25d68790fdf8d66644297dc104408140baf77e5 (patch) | |
tree | 5cbe149580c9ca0831bd4145b0db769d43b14d95 /wqflask | |
parent | e5f179330b024671e066edb0672a5a8b628766ed (diff) | |
download | genenetwork2-b25d68790fdf8d66644297dc104408140baf77e5.tar.gz |
Added the div for showing the error when the Select Rows text has wrong syntax
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/search_result_page.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index a5b2242c..26cdc437 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -102,6 +102,10 @@ <button class="btn btn-default" id="invert" type="button"><span class="glyphicon glyphicon-adjust"></span> Invert</button> <button class="btn btn-default" id="deselect_all" type="button"><span class="glyphicon glyphicon-remove"></span> Deselect</button> </div> + <div id="select_samples_invalid" class="alert alert-error" style="display:none;"> + Please check that your syntax includes only a combination of integers, dashes, and commas of a format + similar to <strong>1,5,10</strong> or <strong>2, 5-10, 15</strong>, etc. + </div> </form> {% if dataset.type != 'Geno' %} <div class="show-hide-container"> |