32 lines
807 B
HTML
32 lines
807 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>{{ doc.name }}</small></h1>
|
|
|
|
<p class="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-primary float-end" href="{{ doc.get_absolute_url }}">Back</a>
|
|
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|