{% extends 'base.html' %} {% load static %} {% block content %} {% if feature.error == None %} {% if data %}
ID: {{ feature.uniquename }}
{% if feature.get_synonyms %}Symbols: {{ feature.get_synonyms|join:', ' }}
{% endif %}
{% if feature.get_properties %}
{% for prop in feature.get_properties %}
{{ prop.0|title }}: {{ prop.1 }}
{% endfor %}
{% endif %}
DBxRefs: {{ feature.get_dbxrefs|join:', ' }}
{% endif %} {% if feature.get_relationship %}
{% for relative in feature.get_relationship %}
{{ relative.type.name|title }}: {{ relative.uniquename }} {{ relative.get_display|default_if_none:'' }}
{% endfor %}
{{ location.ref|safe }}:{{ location.start|safe }}..{{ location.end|safe }} {{ location.strand|safe }}
{% if location.jbrowse_url %} {% endif %} {% endfor %}