diff options
author | Munyoki Kilyungi | 2023-11-30 17:45:46 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-11-30 17:48:43 +0300 |
commit | 78970800809b8abd4af2c64c044cf350876c4baa (patch) | |
tree | 774ea030d26067de3d32ddea216bc8e3388395ed | |
parent | c17815aff6d089a51bc15c1aa7b9d87e7e6b3a49 (diff) | |
download | genenetwork2-78970800809b8abd4af2c64c044cf350876c4baa.tar.gz |
Handle display for unpublished data
Example:
http://cd.genenetwork.org/phenotypes/BXD_17019
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | wqflask/wqflask/templates/phenotype.html | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/wqflask/wqflask/templates/phenotype.html b/wqflask/wqflask/templates/phenotype.html index 500c2f70..7eb86328 100644 --- a/wqflask/wqflask/templates/phenotype.html +++ b/wqflask/wqflask/templates/phenotype.html @@ -12,6 +12,8 @@ {% block content %} +{% set published_p = "http://rdf.ncbi.nlm.nih.gov/pubmed" in metadata.references.id %} + <h1 class="page-header"> Phenotype: {{ metadata.traitName }} ({{ metadata.abbreviation }}) </h1> @@ -49,11 +51,36 @@ </tr> {% if metadata.references.id %} <tr> - <td><b>Publication</b></td> <td> - <i>{{ metadata.references.title }}.</i> {{ ', '.join(metadata.references.creator) }}. {{ metadata.references.year }} {{ metadata.references.month }}{{ metadata.references.volume }}:{{ metadata.references.page }} + <b>Publication</b> + {% if published_p == False %} + <sup><small>(unpublished)</small></sup> + {% endif %} + </td> + <td> + <i> + {% if metadata.references.title %} + {{ metadata.references.title }}. + {% endif %} + </i> + {% if metadata.references.creator %} + {{ ', '.join(metadata.references.creator) }}. + {% endif %} + {{ metadata.references.year }} + {{ metadata.references.month }} + {{ metadata.references.month }} + {% if metadata.references.volume and metadata.references.page %} + {{ metadata.references.volume }}:{{ metadata.references.page }} + {% endif %} + <sup> - <a href="{{ metadata.references.id }}" target="_blank"><small>PubMed<sup> <span class="glyphicon glyphicon-new-window"></span></sup></small></a> + <a href="{{ metadata.references.id }}" target="_blank"><small> + {% if published_p %} + PubMed + {% else %} + GN RDF Page + {% endif %} + <sup> <span class="glyphicon glyphicon-new-window"></span></sup></small></a> </sup> </td> </tr> @@ -92,7 +119,13 @@ <tr> <td><b>Resource Links</b></td> <td> - <a href="{{ metadata.references.id }}" target="_blank">PubMed</a> + <a href="{{ metadata.references.id }}" target="_blank"> + {% if published_p %} + PubMed + {% else %} + GN RDF Page + {% endif %} + </a> </td> </tr> {% endif %} |