{% extends "base.html" %} {% block title %}Import – Conference archive{% endblock %} {% block content %}

Import

event

{{ event.slug }} – {{ prefer_en_label(event.name) }} ({{ event.date_from }} to {{ event.date_to }})

rooms

room count: {{ rooms.count }}

speakers

speaker count: {{ speakers | count }}

{% for speaker in speakers %}

{{ speaker.name }}

{% if speaker.avatar %}
{% endif %} {% if speaker.biography %}
{% for paragraph in speaker.biography.splitlines() %}

{{ paragraph }}

{% endfor %}
{% else %}

No biography

{% endif %}

{{ plural(person_candidates[speaker.code].count(), "candidate") }} found

{% for candidate in person_candidates[speaker.code] %}
{{ candidate.name }}
{% endfor %}
{#
{{ speaker | pprint }}
#} {% endfor %}

talks

talk count: {{ talks.count }}

{% for talk in talks["results"] %}

{{ talk.title }}

{% if talk.speakers %}
speakers: {% for speaker in talk.speakers %} {{ speaker.name }} ({{ speaker.code }}) {% endfor %}
{% else %}
no speakers
{% endif %}
start: {{ talk.slot.start }}
duration: {{ talk.duration }}
room: {{ prefer_en_label(talk.slot.room) }}
track: {{ prefer_en_label(talk.track) }}

abstract

{{ talk.abstract }}

description

{{ talk.description }}
{#
{{ talk | pprint }}
#} {% endfor %}
{% endblock %}