{% extends 'base.html' %} {% block content %} {% for item, data in context.items %}

{{ item }}

{% for entry in data.counts %} {{ entry.type__name }}: {{ entry.count }}
{% endfor %}
    {% 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 %}
{% endfor %} {% endblock%}