2023-09-15 19:04:41 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Conference archive{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<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>
|
|
|
|
|
2023-09-21 04:59:17 +01:00
|
|
|
<h3>Speaker/conference frequency distribution</h3>
|
|
|
|
|
|
|
|
<p>Distribution of speakers by conference count.</p>
|
|
|
|
{% for conf_count, speaker_count in speaker_counts %}
|
|
|
|
<div>
|
|
|
|
{{ plural(conf_count, "conference") }}:
|
|
|
|
{{ plural(speaker_count, "speaker") }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-09-15 19:04:41 +01:00
|
|
|
<h3>Top speakers</h3>
|
|
|
|
<ul>
|
|
|
|
|
|
|
|
{% for person, count in top_speakers %}
|
2023-09-21 04:59:17 +01:00
|
|
|
<div>
|
|
|
|
👤
|
2023-09-15 19:04:41 +01:00
|
|
|
<a href="{{ url_for("person", person_id=person.id) }}">{{ person.name }}</a>
|
2023-09-21 04:59:17 +01:00
|
|
|
({{ count }} conferences, {{ person.event_count }} talks)
|
|
|
|
{% if person.wikidata_photo %}📷{% endif %}
|
2023-09-15 19:04:41 +01:00
|
|
|
{% if person.wikidata_qid %}
|
2023-09-21 04:59:17 +01:00
|
|
|
<a href="https://www.wikidata.org/wiki/{{ person.wikidata_qid }}">Wikidata</a>
|
2023-09-15 19:04:41 +01:00
|
|
|
{% endif %}
|
2023-09-21 04:59:17 +01:00
|
|
|
</div>
|
2023-09-15 19:04:41 +01:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|