{% extends "base.html" %} {% block title %}{{ item.name }}{% endblock %} {% block content %}
{% if apperance.bio %}{{ apperance.bio | safe }}{% else %}No speaker biography.{% endif %}
Search for {{ item.name }} on Wikidata
Has {{ item.events_association.count() }} events
{% for event in item.events_by_time() %}{% 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 %}