16 lines
663 B
HTML
16 lines
663 B
HTML
{# bs5ok #}
|
|
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% 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 %}
|
|
<a class="btn btn-secondary float-end" href="{{ doc.get_absolute_url }}">Back</a>
|
|
<button type="submit" value="Save" class="btn btn-primary">Save</button>
|
|
</form>
|
|
{% endblock %} |