{% extends "base.html" %} {% block content %} {{ flash_me() }}

GeneWiki Entry History

{% for entry in entries %}

{% if loop.index0 == 0 %} Most Recent Version: {% elif loop.index0 == 1 %} Previous Version: {% endif %}

Gene Symbol: {{ entry.symbol }}
PubMed IDs: {% for id in entry.pubmed_ids %} {{ id }}  {% endfor %} {% if not entry.pubmed_ids %}Not Available{% endif %}
Web URL: {{ entry.web_url or "Not Available" }}
Entry: {{ entry.comment }}
Category: {{ '; '.join(entry.categories) or "Not Available" }}
Add Time: {{ entry.created }}
Reason for Modification: {{ entry.reason or "Not Available" }}
{% endfor %}
{% endblock %}