forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.html
More file actions
executable file
·50 lines (39 loc) · 1.62 KB
/
confirm.html
File metadata and controls
executable file
·50 lines (39 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Sessions - Confirm{% endblock %}
{% block extrastyle %}
<style>
dl {width: 100%;}
dt {float: left; width: 15%; margin: 0.1em 0 0.1em 0; }
dt::after {content: ":";}
dd {float: left; width: 85%; margin: 0.1em 0 0.1em 0;}
</style>
{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{{ form.media }}
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» <a href="{% url "ietf.secr.sreq.views.main" %}">Sessions</a>
» <a href="../">New</a>
» Session Request Confirmation
{% endblock %}
{% block content %}
<div class="module interim-container">
<h2>Sessions - Confirm</h2>
{% include "includes/sessions_request_view.html" %}
{% if group.features.acts_like_wg and form.session_forms.forms_to_keep|length > 2 %}
<br>
<span class="alert"><p><b>Note: Your request for a third session must be approved by an area director before
being submitted to agenda@ietf.org. Click "Submit" below to email an approval
request to the area directors.</b></p></span>
<br>
{% endif %}
<form action="{% url "ietf.secr.sreq.views.confirm" acronym=group.acronym %}" method="post">{% csrf_token %}
{{ form }}
{{ form.session_forms.management_form }}
{% for sf in form.session_forms %}{% include 'meeting/session_details_form.html' with form=sf hidden=True only %}{% endfor %}
{% include "includes/buttons_submit_cancel.html" %}
</form>
</div> <!-- module -->
{% endblock %}