24 lines
654 B
HTML
24 lines
654 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Review suggestions for documents that {{ doc }} replaces{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Review suggestions for documents that {{ doc }} replaces</h1>
|
|
|
|
<form name="review-suggested-replaces" role="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<a class="btn btn-default pull-right" href="{{ doc.get_absolute_url }}">Cancel</a>
|
|
<button type="submit" value="Save" class="btn btn-primary">Save</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|