{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
{{ session }}
{% trans "Session Chair" %}
{% if chair %}
{{ chair.profile.display_name }}
{% if request.user == chair %}
{% endif %}
{% else %}
{% if user.is_authenticated %}
{% if request.user.profile.is_complete %}
{% if not chair_denied %}
{% endif %}
{% else %}
{% url 'profile_edit' as profile_edit%}
{% blocktrans %}Click here to create a volunteer profile and enable volunteering for session roles.{% endblocktrans %}
{% endif %}
{% else %}
{% url 'account_login' as account_login %}
{% blocktrans %}Sign up and log in to volunteer to be session chair.{% endblocktrans %}
{% endif %}
{% endif %}
{% trans "Session Runner" %}
{% if runner %}
{{ runner.profile.display_name }}
{% if request.user == runner %}
{% endif %}
{% else %}
{% if user.is_authenticated %}
{% if request.user.profile.is_complete %}
{% if not runner_denied %}
{% endif %}
{% else %}
{% blocktrans %}Click here to create a volunteer profile and enable volunteering for session roles.{% endblocktrans %}
{% endif %}
{% else %}
{% blocktrans %}Sign up and log in to volunteer to be session runner.{% endblocktrans %}
{% endif %}
{% endif %}