26 lines
680 B
HTML
26 lines
680 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Change state for {{doc.title}}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Change state<br><small>{{doc.title}}</small></h1>
|
|
|
|
<p><a class="btn btn-info" href="{{help_url}}">Help on states</a></p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
<a class="btn btn-default pull-right" href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|