48 lines
1.8 KiB
HTML
Executable file
48 lines
1.8 KiB
HTML
Executable file
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Sessions- New{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'secr/js/sessions.js' %}"></script>
|
|
{{ form.media }}
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="../../">Sessions</a>
|
|
» New Session Request
|
|
{% endblock %}
|
|
|
|
{% block instructions %}
|
|
<a href="https://www.ietf.org/chairs/session-request-tool-instructions/" target="_blank">Instructions</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<noscript>
|
|
<div style="position: fixed; top: 0px; left: 0px; z-index: 3000;
|
|
height: 100%; width: 100%; background-color: #FFFFFF">
|
|
<p style="margin-left: 10px">This page requires JavaScript.</p>
|
|
</div>
|
|
</noscript>
|
|
|
|
<div class="module interim-container">
|
|
<h2>IETF {{ meeting.number }}: New {% if is_virtual %}Virtual {% endif %}Session Request</h2>
|
|
<div class="inline-related">
|
|
<br>
|
|
<ul class="session-buttons">
|
|
<li><button onclick="if (window.confirm('A message will be sent to agenda@ietf.com as well as to the area director(s).\n\nContinue?')) { window.location='{% url "ietf.secr.sreq.views.no_session" acronym=group.acronym %}'};">Send a notification that the group does not plan to hold a session at IETF {{ meeting.number }}</button></li>
|
|
<li><button onclick="window.location='{% url "ietf.secr.sreq.views.new" acronym=group.acronym %}?previous'">Retrieve all information from previous meeting</button></li>
|
|
</ul>
|
|
|
|
{% include "includes/sessions_request_form.html" %}
|
|
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|
|
|
|
{% block footer-extras %}
|
|
{% include "includes/sessions_footer.html" %}
|
|
{% endblock %}
|