Show wikidata description on github report

This commit is contained in:
Edward Betts 2023-09-25 14:55:08 +01:00
parent 22067b97e7
commit 73e694d373
2 changed files with 5 additions and 4 deletions

View file

@ -6,12 +6,13 @@
<h1>Conference archive</h1>
<p>{{ items | count }} matches found</p>
{% for person, qid, wd_name, photo in items %}
{% for person, qid, wd_name, desc in items %}
<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>
{% if photo %}📷{% endif %}
##
{{ desc }}
</div>
{% endfor %}