{% extends "wafer/base.html" %} {% load i18n %} {% load review %} {% block title %}{% trans "Talks" %} - {{ WAFER_CONFERENCE_NAME }}{% endblock %} {% block content %}
{% regroup talk_list by talk_type.name as grouped_talks %}
{% for type, talks in grouped_talks %} {% if languages %}{% endif %} {% for talk in talks %} {% if languages %} {% endif %} {% endfor %} {% empty %} {% endfor %}
{% if type %} {{ type }} {% else %} {% trans "Talk" %} {% endif %} {% 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.get_language_display }} {% with authors=talk.get_authors_display_name %} {{ authors }} {% endwith %}
{% trans 'No talks accepted yet.' %}
{% if is_paginated %}
{% endif %} {% endblock %}