forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
executable file
·43 lines (33 loc) · 1.24 KB
/
edit.html
File metadata and controls
executable file
·43 lines (33 loc) · 1.24 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
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Sessions - Edit{% 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>
» <a href="../">{{ group.acronym }}</a>
» Edit
{% 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 }}: Edit Session Request</h2>
<div class="inline-related">
<br>
{% include "includes/sessions_request_form.html" %}
</div> <!-- module -->
{% endblock %}
{% block footer-extras %}
{% include "includes/sessions_footer.html" %}
{% endblock %}