37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
{# bs5ok #}
|
|
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2017, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% load static %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block pagehead %}{{ add_downref_form.media.css }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ title }}</h1>
|
|
{% bootstrap_messages %}
|
|
<div class="my-3 alert alert-info">This form will add entries to the downref registry.</div>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form add_downref_form %}
|
|
<p>
|
|
<button type="submit"
|
|
class="btn btn-primary"
|
|
name="save_downref"
|
|
value="Save downref">Save downref</button>
|
|
{% for error in add_downref_form.non_field_errors %}
|
|
{% if 'There does not seem to be a normative reference' in error %}
|
|
<button type="submit"
|
|
class="btn btn-warning"
|
|
name="save_downref_anyway"
|
|
value="Save downref anyway">
|
|
Save downref anyway
|
|
</button>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.doc.views_downref.downref_registry" %}">Back</a>
|
|
</p>
|
|
</form>
|
|
{% endblock %}
|
|
{% block js %}{{ add_downref_form.media.js }}{% endblock %} |