{% extends 'base.html' %} {% block title %}Talk-Übersicht – {{ talk.title }}{% endblock %} {% block content %}

{{ talk.title }}

{% if talk.subtitle %}

{{ talk.subtitle }}

{% endif %}
Details
Event:
{% if talk.event %} {% include 'components/event_link.html' %} {% else %} No event assigned {% endif %}
Speaker(s):
{% if talk.speakers or talk.speaker %} {% if talk.speaker %} {% set speaker = talk.speaker %} {% include 'components/speaker_link.html' %} {% if talk.speakers %}, {% endif %} {% endif %} {% if talk.speakers %} {% for speaker in talk.speakers %} {% include 'components/speaker_link.html' %} {%- if not loop.last %}, {% endif -%} {% endfor %} {% endif %} {% else %} No speakers assigned {% endif %}
{% if talk.date %}
Date:
{{ talk.date.strftime('%Y-%m-%d %H:%M') }}
{% endif %} {% if talk.start_time %}
Start Time:
{{ talk.start_time }}
{% endif %}
Duration:
{% if talk.duration_minutes %} {{ talk.duration_minutes }} minutes {% else %} Not specified {% endif %}
{% if talk.room %}
Room:
{{ talk.room }}
{% endif %} {% if talk.language %}
Language:
{{ talk.language }}
{% endif %} {% if talk.slug %}
Slug:
{{ talk.slug }}
{% endif %} {% if talk.guid %}
GUID:
{{ talk.guid }}
{% endif %}
Zurück zur Feedbackübersicht Personenzahl für diesen Talk erfassen Talk-Feedback erfassen

Feedback

{% set chart_prefix = 'talk-' ~ talk.id %} {% include 'components/talk_feedback_display.html' %}

Personenzählungen für diesen Talk

{% if counts %} {% for pc in counts %} {% endfor %}
Zeit Ort Anzahl
{{ pc.time.strftime('%H:%M') }} {{ pc.place }} {{ pc.count }}
{% else %}

Noch keine Personenzählungen für diesen Talk erfasst.

Personenzahl erfassen

{% endif %} {% include 'components/imports/chartjs.html' %} {% include 'components/talk_feedback_charts.html' %} {% endblock %}