First round of HTML fixes identified by test-crawl --vnu. - Legacy-Id: 9764 Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
33 lines
799 B
HTML
33 lines
799 B
HTML
{% extends "nomcom/nomcom_private_base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block nomcom_content %}
|
|
{% origin %}
|
|
<h2>Position: {{ position }}</h2>
|
|
<dl>
|
|
<dt>Description:</dt>
|
|
<dd>{{ position.description }}</dd>
|
|
<dt>Incumbent:</dt>
|
|
<dd>{{ position.incumbent }}</dd>
|
|
<dt>Is open:</dt>
|
|
<dd>{{ position.is_open }}</dd>
|
|
</dl>
|
|
|
|
<h3>Do you want to remove it?</h3>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" name="remove" value="1">
|
|
|
|
{% buttons %}
|
|
<a class="btn btn-default pull-right" href="../">No, get me out of here</a>
|
|
<button class="btn btn-primary" type="submit">Yes, remove it</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock nomcom_content %}
|