forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchange_replaces.html
More file actions
36 lines (26 loc) · 896 Bytes
/
change_replaces.html
File metadata and controls
36 lines (26 loc) · 896 Bytes
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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load bootstrap3 %}
{% block title %}Change documents replaced by {{ doc }}{% endblock %}
{% block pagehead %}
{{ form.media.css }}
{% endblock %}
{% block content %}
{% origin %}
<h1>Change documents replaced by<br><small>{{ doc }}</small></h1>
<h3>Instructions</h3>
<p class="alert alert-warning">Do not include <code>-00</code> and do not include a file extension like <code>.txt</code> in the document name.</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Save</button>
<a class="btn btn-default pull-right" href="{{ doc.get_absolute_url }}">Back</a>
{% endbuttons %}
</form>
{% endblock %}
{% block js %}
{{ form.media.js }}
{% endblock %}