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

This is the topic lead review screen. It lists all session suggestions for your topic so far.

A graph shows you how many sessions you have proposed, preapproved and scheduled against the number of available slots you have for your topic.

You can see the details of a proposed session (or edit sessions that are not in Preapproved state yet) by clicking on its title. You can sort the results by clicking on the corresponding table headers.

To change the status for a given session, click on the Status you want to change.

Finally, when you're ready to do the scheduling of your topic, you can click on the Scheduling button.

{% endblock %} {% block content %}

{{ topic.name }}

Back to proposals list Scheduling
{% for proposal in proposals %} {% endfor %}
Topic Title (Click to edit) Proposer Status (Click to review)
{% if proposal.scheduled %} {{ proposal.topic.name }} {% else %} {{ proposal.topic.name }} {% endif %} {% if proposal.scheduled %} {{ proposal.title }} {% else %} {{ proposal.title }} {% endif %} {{ proposal.proposer.first_name }} {{ proposal.proposer.last_name }} {{ proposal.status }} {% if proposal.scheduled %} Scheduled {% else %} {{ proposal.get_status_display }} {% endif %}
{% endblock %} {% block extrafooter %} {% endblock %}