38 lines
925 B
HTML
38 lines
925 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Conference archive{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<h1>Conference archive</h1>
|
|
|
|
<form action="{{ url_for("search_people") }}">
|
|
<div class="mb-3">
|
|
<label for="q" class="form-label">speaker name</label>
|
|
<input type="text" class="form-control" name="q" id="q">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Search</button>
|
|
</form>
|
|
|
|
<h3>Top speakers</h3>
|
|
<ul>
|
|
|
|
{% for person, count in top_speakers %}
|
|
<li>
|
|
<a href="{{ url_for("person", person_id=person.id) }}">{{ person.name }}</a>
|
|
({{ count }})
|
|
{% if person.wikidata_qid %}
|
|
—
|
|
<a href="https://www.wikidata.org/wiki/{{ person.wikidata_qid }}">{{ person.wikidata_qid }} on Wikidata</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|