* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% load ietf_filters %}
|
|
{% block title %}Begin IETF conflict review for {{ doc_to_review.canonical_name }}-{{ doc_to_review.rev }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Begin IETF conflict review
|
|
<br>
|
|
<small class="text-body-secondary">{{ doc_to_review.canonical_name }}-{{ doc_to_review.rev }}</small>
|
|
</h1>
|
|
{% if user|has_role:"Secretariat" %}
|
|
<p class="my-3">
|
|
<a class="btn btn-info"
|
|
href="{% url 'ietf.doc.views_help.state_help' type="conflict-review" %}">Help on states</a>
|
|
</p>
|
|
{% endif %}
|
|
<form class="my-3" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
<a class="btn btn-secondary float-end"
|
|
href="{% url "ietf.doc.views_doc.document_main" name=doc_to_review.name %}">
|
|
Back
|
|
</a>
|
|
</form>
|
|
{% endblock %} |