{% extends "symposion/schedule/base.html" %} {% load lca2018_tags %} {% load sitetree %} {% load static %} {% load thumbnail %} {% load i18n %} {% block head_title %}Session: {{ session }}{% endblock %} {% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} {% block header_title %}Session: {{ session }}{% endblock %} {% block header_paragraph %} {% endblock %} {% block content %}
{% trans "Session Chair" %}
{% if chair %} {{ chair.attendee.attendeeprofilebase.attendeeprofile.name }} {% if request.user == chair %}
{% csrf_token %}
{% endif %} {% else %} {% if request.user.is_authenticated %} {% if request.user.attendee.completed_registration %} {% if not chair_denied %}
{% csrf_token %}
{% endif %} {% else %} {% url 'guided_registration' as guided_registration %} Click here to get a ticket for the conference, and enable volunteering for session roles. {% endif %} {% else %} Sign up and log in to volunteer to be session chair. {% endif %} {% endif %}
{% trans "Session Runner" %}
{% if runner %} {{ runner.profile.display_name }} {% else %} {% blocktrans %}Session runner not assigned.{% endblocktrans %} {% endif %}

Slots

{% for slot in session.slots.all %} {% empty %}
  • {% trans "No slots in session." %}
  • {% endfor %}
    {{ slot }} {% if slot.content %}{{ slot.content }}{% endif %}
    {% endblock %}