forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadopt_draft.html
More file actions
28 lines (20 loc) · 808 Bytes
/
adopt_draft.html
File metadata and controls
28 lines (20 loc) · 808 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Manage Document Adoption of {{ doc }} in Group{% endblock %}
{% block content %}
{% origin %}
<h1>Manage Document Adoption of {{ doc }} in Group</h1>
<p class="alert alert-info">You can begin managing the group state of this draft.</p>
<p class="alert alert-info">For a WG, the draft enters the IETF stream.
For an RG, the draft enters the IRTF stream.</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 %}