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

{{ item.name }}

home

Conferences

{% for apperance in item.conferences_association %} {% set conf = apperance.conference %}
{{ conf.id }}: {{ conf.title }}

{% if apperance.bio %}{{ apperance.bio | safe }}{% else %}No speaker biography.{% endif %}

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

Search for {{ item.name }} on Wikidata

Talks

Has {{ item.events_association.count() }} events

{% for event in item.events_by_time() %}
{{ event.title }}
{{ event.conference.title }} — {% if event.event_date %} {{ event.event_date.strftime("%d %b %Y") }} {% else %} event date missing {% endif %}

{% if event.url %} {{ event.title }} on conference website {% endif %} {% if event.abstract %}

{% if "<" in event.abstract %} {{ event.abstract | safe }} {% else %} {{ event.abstract }} {% endif %}

{% endif %} {% if event.description %}

{% if "<" in event.description %} {{ event.description | safe }} {% else %} {{ event.description }} {% endif %}

{% endif %}

{% for p in event.people %} {% if p.id != item.id %} {{ p.name }} {% endif %} {% endfor %}

{% endfor %}
{% endblock %}