{% extends 'base.html' %} {% load machado_extras %} {% block content %}
{% include "search_facet.html" %}
{% if object_list %}

Search Results

Showing page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% if so_term_count == 1 or 'orthologous_group' in selected_facets_fields or 'coexpression_group' in selected_facets_fields %} TSV FASTA {% endif %}
{% if orthologs %}{% endif %} {% if coexp_groups %}{% endif %} {% for result in page_obj.object_list %} {% if orthologs %} {% endif %} {% if coexp_groups %} {% endif %} {% empty %} {% endfor %}
Organism{% if request.GET.order_by == 'organism' %} {% elif request.GET.order_by == '-organism' %} {% endif %} Feature Type{% if request.GET.order_by == 'so_term' %} {% elif request.GET.order_by == '-so_term' %} {% endif %} Feature ID{% if request.GET.order_by == 'uniquename' %} {% elif request.GET.order_by == '-uniquename' %} {% endif %} Info{% if request.GET.order_by == 'name' %} {% elif request.GET.order_by == '-name' %} {% endif %} Relationship Display{% if request.GET.order_by == 'display' %} {% elif request.GET.order_by == '-display' %} {% endif %}Orthologous Group{% if request.GET.order_by == 'orthologous_group' %} {% elif request.GET.order_by == '-orthologous_group' %} {% endif %}Coexpression Group{% if request.GET.order_by == 'coexpression_group' %} {% elif request.GET.order_by == '-coexpression_group' %} {% endif %}
{{ result.organism }} {{ result.so_term }} {{ result.uniquename }} {{ result.name|default_if_none:'' }} {% for relationship in result.relationships %} {% with relationship|split:" " as r_list %} {{ r_list.1 }} {% endwith %} {% endfor %} {{ result.display|default_if_none:'' }}{{ result.orthologous_group|default_if_none:'' }}{{ result.coexpression_group|default_if_none:'' }}
No results found.
{% if page_obj.has_previous or page_obj.has_next %}
Show records:
{% endif %}
{% else %}

No Results Found

We couldn't find any feature matching your search criteria. Try removing some filters or query terms.

{% if query or selected_facets %} Clear All Filters {% endif %}
{% endif %}
{% endblock %}