Facelift a couple of pages that has previously escaped because of inheritance from a sub-base page
- Legacy-Id: 8939
This commit is contained in:
parent
f63a99be1c
commit
8c5f79ec4b
|
@ -1,5 +1,7 @@
|
|||
{% extends "nomcom/nomcom_public_base.html" %}
|
||||
|
||||
{% load bootstrap3 %}
|
||||
|
||||
{% block subtitle %} - Change Nomination {% endblock %}
|
||||
|
||||
{% block nomcom_content %}
|
||||
|
@ -9,13 +11,12 @@
|
|||
{% endif %}
|
||||
|
||||
{% if need_confirmation %}
|
||||
<form action="" method="post">{% csrf_token %}
|
||||
{{ form }}
|
||||
|
||||
<div class="submitrow">
|
||||
<input type="submit" value="Save" name="save">
|
||||
</div>
|
||||
<form role="form" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% buttons %}
|
||||
<button class="btn btn-primary" type="submit">Save</button>
|
||||
{% endbuttons %}
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{% extends "nomcom/nomcom_private_base.html" %}
|
||||
|
||||
{% load bootstrap3 %}
|
||||
|
||||
{% block nomcom_content %}
|
||||
<h2>Position: {{ position }}</h2>
|
||||
<dl>
|
||||
|
@ -12,8 +14,16 @@
|
|||
</dl>
|
||||
|
||||
<h3>Do you want to remove it?</h3>
|
||||
<form method="post" action="">{% csrf_token %}
|
||||
<p><input type="submit" name="remove" value="Yes, remove it"> <a href="../">No, get me out of here</a></p>
|
||||
|
||||
<form role="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 %}
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
|
||||
{% block submit_content %}
|
||||
<h2>Note Well</h2>
|
||||
<p>Any submission to the IETF intended by the Contributor for publication as all or part of an IETF Internet-Draft or RFC and any statement made within the context of an IETF activity is considered an "IETF Contribution". Such statements include oral statements in IETF sessions, as well as written and electronic communications made at any time or place, which are addressed to:</p>
|
||||
|
||||
<p>Any submission to the IETF intended by the Contributor for publication as all or part of an IETF Internet-Draft or RFC and any statement made within the context of an IETF activity is considered an "IETF Contribution". Such statements include oral statements in IETF sessions, as well as written and electronic communications made at any time or place, which are addressed to:</p>
|
||||
|
||||
<ul>
|
||||
<li>The IETF plenary session</li>
|
||||
|
@ -15,7 +16,7 @@
|
|||
<li> The RFC Editor or the Internet-Drafts function</li>
|
||||
</ul>
|
||||
|
||||
<p>All IETF Contributions are subject to the rules of <a href="//www.ietf.org/rfc/rfc5378.txt">RFC 5378</a> and <a href="//www.ietf.org/rfc/rfc3979.txt">RFC 3979</a> (updated by <a href="//www.ietf.org/rfc/rfc4879.txt">RFC 4879</a>). </p>
|
||||
<p>All IETF Contributions are subject to the rules of <a href="//www.ietf.org/rfc/rfc5378.txt">RFC 5378</a> and <a href="//www.ietf.org/rfc/rfc3979.txt">RFC 3979</a> (updated by <a href="//www.ietf.org/rfc/rfc4879.txt">RFC 4879</a>).</p>
|
||||
|
||||
<p>Statements made outside of an IETF session, mailing list or other function, that are clearly not intended to be input to an IETF activity, group or function, are not IETF Contributions in the context of this notice.</p>
|
||||
|
||||
|
@ -23,5 +24,5 @@
|
|||
|
||||
<p>A participant in any IETF activity is deemed to accept all IETF rules of process, as documented in Best Current Practices RFCs and IESG Statements.</p>
|
||||
|
||||
<p>A participant in any IETF activity acknowledges that written, audio and video records of meetings may be made and may be available to the public. </p>
|
||||
<p>A participant in any IETF activity acknowledges that written, audio and video records of meetings may be made and may be available to the public.</p>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue