datatracker/ietf/templates/nomcom/process_nomination_status.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

15 lines
494 B
HTML

{% extends "nomcom/nomcom_public_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block subtitle %}- Change Nomination{% endblock %}
{% block nomcom_content %}
{% origin %}
{% if need_confirmation %}
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button class="btn btn-primary" type="submit">Save</button>
</form>
{% endif %}
{% endblock %}