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

21 lines
702 B
HTML

{% extends "nomcom/nomcom_private_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% load nomcom_tags %}
{% block subtitle %}- Edit Nominee {{ nominee }}{% endblock %}
{% block nomcom_content %}
{% origin %}
<h2>
Edit email
<br>
<small class="text-muted">{{ nominee }}</small>
</h2>
<form method="post" class="my-3">
{% csrf_token %}
{% bootstrap_form form %}
<input class="btn btn-primary" type="submit" value="Save">
<a class="btn btn-secondary float-end"
href="{% url "ietf.nomcom.views.private_index" year %}">Back</a>
</form>
{% endblock %}