diff options
author | zsloan | 2020-09-29 13:50:01 -0500 |
---|---|---|
committer | zsloan | 2020-09-29 13:50:01 -0500 |
commit | 12a350c1185978602eaa91025c5ea5e7dd7bfbff (patch) | |
tree | 7f9dfb588aff6430a684fee5831a5468e53adef9 | |
parent | 5ec0a7b0aa543203ade7920389fdf922865f59a0 (diff) | |
download | genenetwork2-12a350c1185978602eaa91025c5ea5e7dd7bfbff.tar.gz |
Changed Add (to collection) button color to match other Add buttons and
changed the text for the GN1 link button
* wqflask/wqflask/templates/show_trait_details.html - Changed Add button
class to btn-success (to make it green like the other Add buttons) and
changed text from "View in GN1" to "Go to GN1"
-rw-r--r-- | wqflask/wqflask/templates/show_trait_details.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/show_trait_details.html b/wqflask/wqflask/templates/show_trait_details.html index 8b3e4907..2284ca99 100644 --- a/wqflask/wqflask/templates/show_trait_details.html +++ b/wqflask/wqflask/templates/show_trait_details.html @@ -216,7 +216,7 @@ <div style="margin-bottom:15px;" class="btn-toolbar"> <div class="btn-group"> <a href="#redirect"> - <button type="button" id="add_to_collection" class="btn btn-primary" title="Add to collection">Add</button> + <button type="button" id="add_to_collection" class="btn btn-success" title="Add to Collection">Add</button> </a> {% if this_trait.dataset.type == 'ProbeSet' or this_trait.dataset.type == 'Geno' %} {% if this_trait.symbol != None %} @@ -246,7 +246,7 @@ {% endif %} {% endif %} <a target="_blank" href="http://gn1.genenetwork.org/webqtl/main.py?cmd=show&db={{ this_trait.dataset.name }}&probeset={{ this_trait.name }}"> - <button type="button" id="view_in_gn1" class="btn btn-primary" title="View Trait in GN1">View in GN1</button> + <button type="button" id="view_in_gn1" class="btn btn-primary" title="View Trait in GN1">Go to GN1</button> </a> {% if admin_status == "owner" or admin_status == "edit-admins" or admin_status == "edit-access" %} <a target="_blank" href="./resources/manage?resource_id={{ resource_id }}"> |