{% extends "wafer/base.html" %} {% load i18n %} {% load review %} {% block title %}{% trans "Talks" %} - {{ WAFER_CONFERENCE_NAME }}{% endblock %} {% block content %}
{% block heading %} {% if see_all %}

{% trans "All Submitted Talks" %}

{% elif includes_pending %}

{% trans "Planned Talks" %}

{% blocktrans %} This list will include submitted "un-conference" events that have not yet been reviewed, accepted, or scheduled. {% endblocktrans %}
{% else %}

{% trans "Accepted Talks" %}

{% endif %} {% endblock heading %} {% regroup talk_list by talk_type.name as grouped_talks %}
{% for type, talks in grouped_talks %} {% if tracks %} {% endif %} {% if languages %} {% endif %} {% for talk in talks %} {% if tracks %} {% endif %} {% if languages %} {% endif %} {% endfor %} {% empty %} {% if tracks %}{% endif %} {% if languages %}{% endif %} {% endfor %}
{% if type %} {{ type }} {% else %} {% trans "Talk" %} {% endif %} {% trans "Track" %} {% trans "Language" %} {% trans "Speakers" %}
{% if not talk.cancelled and not talk.accepted and talk.is_late_submission %} L {% endif %} {% if talk.submitted %} {{ talk.status }} {% elif talk.under_consideration %} {{ talk.status }} {% elif talk.reject %} {{ talk.status }} {% elif talk.cancelled %} {{ talk.status }} {% elif talk.provisional %} {{ talk.status }} {% endif %} {% reviewed_badge user talk %} {% if talk.withdrawn %} {{ talk.title }} {% else %} {{ talk.title }} {% endif %} {{ talk.track.name }}{{ talk.get_language_display }} {% with authors=talk.get_authors_display_name %} {{ authors }} {% endwith %}
{% trans "Talk" %} {% trans "Track" %}{% trans "Language" %}{% trans "Speakers" %}
{% trans 'No talks accepted yet.' %}
{% if is_paginated %}
{% endif %} {% endblock %}