2023-09-22 21:00:56 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Conference archive{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Conference archive</h1>
|
|
|
|
|
|
|
|
<p>{{ items | count }} matches found</p>
|
2023-09-25 14:55:08 +01:00
|
|
|
{% for person, qid, wd_name, desc in items %}
|
2023-09-22 21:00:56 +01:00
|
|
|
<div>
|
|
|
|
<a href="{{ url_for("person", person_id=person.id) }}">{{ person.name }}</a>
|
|
|
|
##
|
|
|
|
<a href="https://www.wikidata.org/wiki/{{ qid }}">{{ wd_name }} ({{ qid }})</a>
|
2023-09-25 14:55:08 +01:00
|
|
|
##
|
|
|
|
{{ desc }}
|
2023-09-22 21:00:56 +01:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
<style>
|
|
|
|
.searchmatch { background: lightgreen }
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|