{% extends "wafer/base.html" %} {% load i18n %} {% block content %} {% trans 'Talks' %} {% for talk in talk_list %} {% if talk.pending %} {{ talk.status }} {% elif talk.reject %} {{ talk.status }} {% endif %} {{ talk.title }} by {{ talk.get_author_display_name }} {% empty %} No talks accepted yet. {% endfor %} {% if is_paginated %} {% if page_obj.has_previous %} « {% else %} « {% endif %} {% for page in paginator.page_range %} {{ page }} {% endfor %} {% if page_obj.has_next %} » {% else %} » {% endif %} {% endif %} {% endblock %}
No talks accepted yet.