{% extends "base.html" %} {% block title %}{{ item.name }}{% endblock %} {% block style %} {% endblock %} {% block content %}
{% set photo = item.photo_filename() %} {% if photo %}
{% endif %}

{{ 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 is_admin() %} {% set search_for = item.name + ' ' + " haswbstatement:P31=Q5" %}

Search for {{ item.name }} on Wikidata

{% if show_wikidata_matches %} {% if wikidata_hits %}

Possible Wikidata matches

{% elif not item.wikidata_qid %}

No similar names found on Wikidata

{% endif %} {% endif %} {% endif %} {% set bio_source = item.bio_source() %} {% if bio_source %}

Biography

{{ bio_source.bio | safe }}
— biography from {{ bio_source.conference.title }}
{{ bio_source.url }}
{% else %}

No biography available.

{% endif %}

Conferences

{{ item.conferences_association.count() }} known conferences

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

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

{% if 0 and 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 %}