forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterim_request_cancel.html
More file actions
48 lines (48 loc) · 1.68 KB
/
interim_request_cancel.html
File metadata and controls
48 lines (48 loc) · 1.68 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static django_bootstrap5 widget_tweaks %}
{% block pagehead %}
<link rel="stylesheet" href="{% static 'ietf/css/select2.css' %}">
<link rel="stylesheet" href="{% static 'ietf/css/datepicker.css' %}">
{% endblock %}
{% block content %}
{% origin %}
<h1>
{% block title %}
Cancel Interim
{% if meeting %}
Meeting
{% else %}
Session
{% endif %}
{% if session_status != "sched" %}Request{% endif %}
{% endblock %}
</h1>
<form id="interim-request-cancel-form"
role="form"
method="post"
class="my-3">
{% csrf_token %}
{% bootstrap_form form layout='horizontal' %}
<div class="mb-3">
<button type="submit" class="btn btn-primary">Submit</button>
{% if meeting %}
<a class="btn btn-secondary float-end"
href="{% url 'ietf.meeting.views.interim_request_details' number=meeting.number %}">
Back
</a>
{% else %}
<a class="btn btn-secondary float-end"
href="{% url 'ietf.meeting.views.interim_request_details' number=session.meeting.number %}">
Back
</a>
{% endif %}
</div>
</form>
{% endblock %}
{% block js %}
<script src="{% static 'ietf/js/datepicker.js' %}"></script>
<script src="{% static 'ietf/js/select2.js' %}"></script>
<script src="{% static 'ietf/js/meeting-interim-request.js' %}"></script>
{% endblock %}