Skip to content

Commit 7530e4c

Browse files
committed
Added a missing template.
- Legacy-Id: 14173
1 parent 53eb7c8 commit 7530e4c

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

ietf/templates/doc/edit_field.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{% extends "base.html" %}
2+
{# Copyright The IETF Trust 2015, All Rights Reserved #}
3+
{% load origin %}
4+
5+
{% load bootstrap3 %}
6+
7+
{% block title %}
8+
{{ title }} {{ doc.canonical_name }}
9+
{% endblock %}
10+
11+
{% block content %}
12+
{% origin %}
13+
<h1>{{ title }}<br><small>{{ doc.canonical_name }}</small></h1>
14+
15+
<p>
16+
<b>
17+
{{ info|safe }}
18+
</b>
19+
</p>
20+
21+
22+
<form enctype="multipart/form-data" method="post">
23+
{% csrf_token %}
24+
{% bootstrap_form form %}
25+
26+
{% buttons %}
27+
<!-- Regarding placement of buttons: https://www.lukew.com/ff/entry.asp?571 -->
28+
<button type="submit" class="btn btn-primary" name="submit" value="Save">Submit</button>
29+
<a class="btn btn-default pull-right" href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">Back</a>
30+
{% endbuttons %}
31+
</form>
32+
33+
{% endblock %}

0 commit comments

Comments
 (0)