diff options
author | zsloan | 2019-08-01 15:16:39 -0500 |
---|---|---|
committer | zsloan | 2019-08-01 15:16:39 -0500 |
commit | eb2fb5c936ff8e2351ef3c1f9cf4968790528bdb (patch) | |
tree | 7679ed0f5ec300bc4f91ceca57855d471d35c6ea /wqflask/wqflask/templates | |
parent | d49507350119c79c1ffb09b054d08b7545703a18 (diff) | |
download | genenetwork2-eb2fb5c936ff8e2351ef3c1f9cf4968790528bdb.tar.gz |
Added wikidata aliases
Fixed year to not be a hyperlink when no pubmed id
Fixed first column width so it doesn't go onto two lines for trait details
Diffstat (limited to 'wqflask/wqflask/templates')
-rw-r--r-- | wqflask/wqflask/templates/show_trait_details.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/show_trait_details.html b/wqflask/wqflask/templates/show_trait_details.html index e6c68591..7714a1ab 100644 --- a/wqflask/wqflask/templates/show_trait_details.html +++ b/wqflask/wqflask/templates/show_trait_details.html @@ -1,6 +1,6 @@ <table class="table"> <tr> - <td>Species and Group</td> + <td width="150px">Species and Group</td> <td>{{ this_trait.dataset.group.species }}, {{ this_trait.dataset.group.name }}</td> </tr> {% if this_trait.dataset.type == 'Publish' %} @@ -18,7 +18,7 @@ </tr> <tr> <td>Journal</td> - <td>{{ this_trait.journal }} (<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids={{ this_trait.pubmed_id }}&dop=Abstract" target="_blank" title="PubMed">{{ this_trait.year }}</a>)</td> + <td>{{ this_trait.journal }} ({% if this_trait.pubmed_id %}<a href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids={{ this_trait.pubmed_id }}&dop=Abstract" target="_blank" title="PubMed">{{ this_trait.year }}</a>{% else %}{{ this_trait.year }}{% endif %})</td> </tr> {% else %} <tr> @@ -35,8 +35,14 @@ {% endif %} <tr> <td>Aliases</td> - <td>{{ this_trait.alias_fmt|replace(",",";") }}</td> + <td>Wikidata: {{ this_trait.wikidata_alias_fmt|replace(",",";") }}</td> </tr> + {% if this_trait.alias_fmt != "Not Available" %} + <tr> + <td></td> + <td>GeneNetwork: {{ this_trait.alias_fmt|replace(",",";") }}</td> + </tr> + {% endif %} {% endif %} {% if this_trait.dataset.type != 'Publish' %} <tr> |