* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
24 lines
862 B
HTML
24 lines
862 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Make last call for {{ doc.name }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Make last call
|
|
<br>
|
|
<small class="text-body-secondary">{{ doc.name }}</small>
|
|
</h1>
|
|
<p class="my-3 alert alert-info">
|
|
<b>Last call for:</b>
|
|
{{ doc.name }} ({{ doc.group.acronym }}) to {{ doc.intended_std_level.name }}
|
|
</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<button type="submit" class="btn btn-primary">Make last call</button>
|
|
<button type="reset" class="btn btn-warning">Reset</button>
|
|
<a class="btn btn-secondary float-end" href="{{ doc.get_absolute_url }}">Back</a>
|
|
</form>
|
|
{% endblock %} |