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
·39 lines (32 loc) · 1.09 KB
/
edit.html
File metadata and controls
executable file
·39 lines (32 loc) · 1.09 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
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Sessions - Edit{% endblock %}
{% block extrahead %}{{ block.super }}
<script src="{% static 'secr/js/utils.js' %}"></script>
<script src="{% static 'secr/js/sessions.js' %}"></script>
{{ form.media }}
<style>
.hidden {display: none !important;}
div.form-group {display: inline;}
</style>
{% 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 %}
<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 -->
</div>
{% endblock %}
{% block footer-extras %}
{% include "includes/sessions_footer.html" %}
{% endblock %}