{% extends "base.html" %} {% block title %}{{ item.name }}{% endblock %} {% block content %}

{{ item.name }}

👥 {{ plural(item.conference_count, "conference") }}
🎤 {{ plural(item.event_count, "talk") }}
{% set start, end = item.active_years() %} 📅 Years active: {{ start.year }} to {{end.year }} {% if item.wikidata_qid %}
📊 Wikidata: {{ item.wikidata_qid }} {% endif %}

{% if item.wikidata_photo %} {% endif %} {% set search_for = item.name + ' ' + " haswbstatement:P31=Q5" %}

Search for {{ item.name }} on Wikidata

{% for apperance in item.conference_by_time() %} {% set conf = apperance.conference %}

👥 {{ conf.title }} 📅 {{ conf.start.strftime("%d %b %Y") }}

{% if apperance.bio %}

Biography: {{ apperance.bio | safe }}

{% endif %}
{% for event in apperance.events %}

🎤 {{ event.title }} {% if event.event_date %} {{ event.event_date.strftime("%d %b %Y") }} {% else %} event date missing {% endif %} show details

{% endfor %} {% endfor %}
{% endblock %} {% block script %} {% endblock %}