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