{% 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 type %}

{{ type }}

{% else %}

{% trans 'Talks' %}

{% endif %}
{% for talk in talks %}
{% 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 %} {% blocktrans trimmed with authors=talk.get_authors_display_name %} by {{ authors }} {% endblocktrans %}
{% empty %}

{% trans 'No talks accepted yet.' %}

{% endfor %}
{% endfor %}
{% if is_paginated %}
{% endif %} {% endblock %}