diff options
author | zsloan | 2021-11-17 21:53:20 +0000 |
---|---|---|
committer | zsloan | 2021-11-17 21:57:43 +0000 |
commit | dea1afa01025026a0754de60615b974a5cb3fd24 (patch) | |
tree | d955f1d058ecee44d94eb63f32d850142eeac793 | |
parent | 3325440faef1161da90d51444543d8d847fb9cdd (diff) | |
download | genenetwork2-dea1afa01025026a0754de60615b974a5cb3fd24.tar.gz |
Changed the URL for editing trait metadata to use the dataset group ID instead of the PublishFreezeId
-rw-r--r-- | wqflask/wqflask/templates/show_trait_details.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/show_trait_details.html b/wqflask/wqflask/templates/show_trait_details.html index 6b125221..4e9ea0fb 100644 --- a/wqflask/wqflask/templates/show_trait_details.html +++ b/wqflask/wqflask/templates/show_trait_details.html @@ -236,7 +236,7 @@ <button type="button" id="view_in_gn1" class="btn btn-primary" title="View Trait in GN1" onclick="window.open('http://gn1.genenetwork.org/webqtl/main.py?cmd=show&db={{ this_trait.dataset.name }}&probeset={{ this_trait.name }}', '_blank')">Go to GN1</button> {% if admin_status != None and admin_status.get('metadata', DataRole.VIEW) > DataRole.VIEW %} {% if this_trait.dataset.type == 'Publish' %} - <button type="button" id="edit_resource" class="btn btn-success" title="Edit Resource" onclick="window.open('/datasets/{{ this_trait.dataset.id }}/traits/{{ this_trait.name }}?resource-id={{ resource_id }}', '_blank')">Edit</button> + <button type="button" id="edit_resource" class="btn btn-success" title="Edit Resource" onclick="window.open('/datasets/{{ this_trait.dataset.group.id }}/traits/{{ this_trait.name }}?resource-id={{ resource_id }}', '_blank')">Edit</button> {% endif %} {% if this_trait.dataset.type == 'ProbeSet' %} |