in order to autogenerate dotted path url pattern names. Updated a number of url reverses to use dotted path, and removed explicit url pattern names as needed. Changed some imports to prevent import of ietf.urls before django initialization was complete. Changed 3 cases of form classes being curried to functions; django 1.10 didn't accept that. Started converting old-style middleware classes to new-style middleware functions (incomplete). Tweaked a nomcom decorator to preserve function names and attributes, like a good decorator should. Replaced the removed django templatetag 'removetags' with our own version which uses bleach, and does sanitizing in addition to removing explicitly mentionied html tags. Rewrote the filename argument handling in a management command which had broken with the upgrade. - Legacy-Id: 12818
65 lines
2.7 KiB
HTML
Executable file
65 lines
2.7 KiB
HTML
Executable file
{% extends "base_site.html" %}
|
|
{% load ietf_filters %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Sessions{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» Sessions
|
|
{% endblock %}
|
|
{% block instructions %}
|
|
<a href="https://www.ietf.org/wg/request-tool-instructions.html" target="_blank">Instructions</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>» <a href="/meeting/requests">View list of timeslot requests</a></p>
|
|
<div class="module interim-container">
|
|
<h2>
|
|
Sessions Request Tool: IETF {{ meeting.number }}
|
|
{% if user|has_role:"Secretariat" %}
|
|
{% if is_locked %}
|
|
<span class="locked"><a href="{% url "sessions_tool_status" %}">Tool Status: Locked</a></span>
|
|
{% else %}
|
|
<span class="unlocked"><a href="{% url "sessions_tool_status" %}">Tool Status: Unlocked</a></span>
|
|
{% endif %}
|
|
{% endif %}
|
|
</h2>
|
|
<div class="inline-related">
|
|
<h3><b>Request New Session</b></h3>
|
|
<p>The list below includes those working groups that you currently chair which do not already have a session scheduled. You can click on an acronym to initiate a request for a new session at the upcoming IETF meeting. Click "Group will not meet" to send a notification that the group does not plan to meet.</p>
|
|
<ul>
|
|
{% for group in unscheduled_groups %}
|
|
<li>
|
|
<a href="{% url "ietf.secr.sreq.views.new" acronym=group.acronym %}">{{ group.acronym }}</a>
|
|
{% if group.not_meeting %}
|
|
<span class="required"> (Currently, this group does not plan to hold a session at IETF {{ meeting.number }})</span>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div> <!-- inline-related -->
|
|
<br>
|
|
<div class="inline-related">
|
|
<h2></h2>
|
|
<h3><b>Edit / Cancel Previously Requested Sessions</b></h3>
|
|
<p>The list below includes those working groups for which you or your co-chair has requested sessions at the upcoming IETF meeting. You can click on an acronym to initiate changes to a session, or cancel a session.</p>
|
|
<ul>
|
|
{% for group in scheduled_groups %}
|
|
<li><a href="{% url "sessions_view" acronym=group.acronym %}">{{ group.acronym }} - {{ group.status_message }}</a></li>
|
|
{% empty %}
|
|
<i>NONE</i>
|
|
{% endfor %}
|
|
</ul>
|
|
</div> <!-- inline-related -->
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|
|
|
|
{% block footer-extras %}
|
|
{% include "includes/sessions_footer.html" %}
|
|
{% endblock %}
|