{% extends 'base.html' %} {% block content %}

Organism Database Summary

Browse biological feature statistics and publications grouped by organism.

Search All Features
{% for item, data in context.items %}
Loaded Features
{% for entry in data.counts %}
{{ entry.type__name }} {{ entry.count }}
{% empty %} No features loaded. {% endfor %}
Publications
{% if data.pubs %}
    {% for pub in data.pubs %}
  • {{ pub.get_authors }} {{ pub.title }}. {{ pub.series_name }}. {{ pub.pyear }}; {{ pub.volume }} {{ pub.pages }}

    {% if pub.get_doi %} DOI: {{ pub.get_doi }} {% endif %}
  • {% endfor %}
{% else %} No publications listed. {% endif %}
{% empty %}

No organism data currently loaded in the database.

{% endfor %}
{% endblock %}