{% extends "base.html" %} {% block title %}Conference archive{% endblock %} {% block content %}

Conference archive

{% for person, count, wikidata_hits in items %}

{{ person.name }} ({{ count }})

    {% for hit in wikidata_hits %}
  • {{ hit.qid }} {{ hit.label }} — {{ hit.description }}
  • {% endfor %}
{% endfor %}
{% endblock %} {% block style %} {% endblock %}