datatracker/ietf/templates/nomcom/process_nomination_status.html
Henrik Levkowetz 5d8306cfc8 Merged in [9733] from lars@netapp.com:
First round of HTML fixes identified by test-crawl --vnu.
 - Legacy-Id: 9764
Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
2015-07-18 08:55:30 +00:00

26 lines
577 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 message %}
<div class="alert alert-{{ message.0 }}">{{ message.1 }}</div>
{% endif %}
{% if need_confirmation %}
<form method="post">
{% csrf_token %}
{% buttons %}
<button class="btn btn-primary" type="submit">Save</button>
{% endbuttons %}
</form>
{% endif %}
{% endblock %}