{% extends "base.html" %} {% block helppage %}

Welcome to the {{ event.title }} session suggestion system.

This is the main screen. It lists all sessions suggested so far.

Each session has a topic, a title and a proposer. You can see the details of a proposed session by clicking on the title. You can sort the results by clicking on the corresponding table headers.

If you want to suggest your own session subject, click on Suggest session. If you're a topic lead, you will see the Review topic button that lets you review sessions suggested for your topic.

{% endblock %} {% block content %} {% if event.status == 'A' %} Suggest session {% else %} Session suggestion is now closed. {% endif %} {% if multitopic %} {% for topic in reviewable_topics %} Review topic: {{ topic.name }} {% endfor %} {% else %} {% if user.is_superuser %} Review proposed sessions {% endif %} {% endif %} {% if multitopic %} {% endif %} {% for proposal in proposals %} {% if multitopic %} {% endif %} {% endfor %}
TopicTitle (Click to view/edit) Proposer Status
{{ proposal.topic.name }} {{ proposal.title }} {{ proposal.proposer.first_name }} {{ proposal.proposer.last_name }} {{ proposal.status }} {% if proposal.scheduled %} Scheduled {% else %} {{ proposal.get_status_display }} {% endif %}
{% endblock %} {% block extrafooter %} {% endblock %}