First round of HTML fixes identified by test-crawl --vnu. - Legacy-Id: 9764 Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
29 lines
758 B
HTML
29 lines
758 B
HTML
{% extends "nomcom/nomcom_private_base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load bootstrap3 %}
|
|
{% load nomcom_tags %}
|
|
|
|
{% block subtitle %} - Edit Nominee {{ nominee }}{% endblock %}
|
|
|
|
{% block nomcom_content %}
|
|
{% origin %}
|
|
{% bootstrap_messages %}
|
|
|
|
<h2>Edit email<br><small>{{ nominee }}</small></h2>
|
|
|
|
{% if message %}
|
|
<p class="alert alert-{{ message.0 }}">{{ message.1 }}</p>
|
|
{% endif %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% buttons %}
|
|
<input class="btn btn-primary" type="submit" value="Save">
|
|
<a class="btn btn-default pull-right" href="{% url "nomcom_private_index" year %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|