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
This commit is contained in:
parent
ed66e24e7c
commit
5d8306cfc8
|
@ -1,5 +1,9 @@
|
|||
# -*- conf-mode -*-
|
||||
|
||||
personal/lars/6.0.5.dev0@9732 # Already fixed in a different merge
|
||||
personal/lars/6.0.5.dev0@9731 # Jquery update; wait with this to the CDN branch comes in
|
||||
personal/lars/6.0.5.dev0@9730 # Jquery update; wait with this to the CDN branch comes in
|
||||
personal/lars/6.0.5.dev0@9729 # Jquery update; wait with this to the CDN branch comes in
|
||||
personal/rjs/v6.0.4.dev0@9647 # Commit contained too much. Later corrected commit will be marked for merge
|
||||
personal/rcross/v5.7.3-dev0@8640 # Rework: make the check_permissions() decorator handle the case where the user isn't logged in
|
||||
personal/rcross/v5.6.3-dev0@8237 # Includes other merges; merge personal/rcross/v5.6.2-dev0@8216 instead
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
<body {% block bodyAttrs %}{%endblock%} data-group-menu-data-url="{% url "group_menu_data" %}">
|
||||
{% with debug_server_mode="production" %}
|
||||
<nav class="navbar {% if server_mode and server_mode == "production" %}navbar-inverse{% else %}navbar-default{% endif %} navbar-fixed-top" role="navigation">
|
||||
<nav class="navbar {% if server_mode and server_mode == "production" %}navbar-inverse{% else %}navbar-default{% endif %} navbar-fixed-top">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse">
|
||||
|
@ -146,6 +146,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
{% include "debug.html" %}
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="/js/lib/jquery-1.11.2.min.js"><\/script>')</script>
|
||||
|
@ -159,7 +160,6 @@
|
|||
<script src="/js/lib/bootstrap.min.js"></script>
|
||||
<script src="/js/ietf.js"></script>
|
||||
{% block js %}{% endblock %}
|
||||
{% include "debug.html" %}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post" action="#custom">
|
||||
<form method="post" action="#custom">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form display_form %}
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
|
||||
<h3>Add a new rule</h3>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form rule_form %}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
<p>Subscribe to the email list for notifications of {% if significant %}significant {% endif %}changes on {{ cl.long_name }}.</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
Cancel your subscription to the email list for notifications of {% if significant %}significant {% endif %}changes on {{ cl.long_name }}.
|
||||
</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -4,23 +4,21 @@
|
|||
{% load ietf_filters %}
|
||||
{% load future %}
|
||||
|
||||
<div id="debug" style="clear: left;">
|
||||
<h3>SQL Queries</h3>
|
||||
<div id="debug">
|
||||
<hr>
|
||||
<p>
|
||||
{{ sql_queries|length }} queries ({{ sql_queries|timesum }}s)
|
||||
{% if sql_queries|length != 0 %}
|
||||
<a class="btn btn-default btn-sm" onclick="document.getElementById('debug-query-table').style.display='table';">Show</a>
|
||||
<a class="btn btn-default btn-xs"
|
||||
onclick="$('#debug-query-table').toggleClass('hide');">Show</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
<table class="table table-condensed table-striped" id="debug-query-table" style="display: none;">
|
||||
<col width="1"></col>
|
||||
<col></col>
|
||||
<col width="1"></col>
|
||||
<table class="table table-condensed table-striped hide" id="debug-query-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">SQL</th>
|
||||
<th scope="col">Time</th>
|
||||
<th>#</th>
|
||||
<th>SQL</th>
|
||||
<th>Time</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
<p class="help-block">The comment will be added to the history trail.</p>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form approval_text_form %}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Approve ballot<br><small>{{ doc }}</small></h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<pre>{{ announcement }}</pre>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
{% origin %}
|
||||
<h1>Clear ballot<br><small>{{ doc }}</small></h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<p class="alert alert-danger">
|
||||
<b>Clear the ballot for {{ doc }}?</b>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Defer ballot<br><small>{{ doc }}</small></h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<p class="alert alert-danger">
|
||||
<b>Defer the ballot for {{ doc }}?</b>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
</p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% for field in form %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form last_call_form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
{% origin %}
|
||||
<h1>Send ballot position for {{ ad }}</h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
<div class="form-group">
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Undefer ballot<br><small>{{ doc }}</small></h1>
|
||||
|
||||
<form role="form" class="undefer" method="post">
|
||||
<form class="undefer" method="post">
|
||||
{% csrf_token %}
|
||||
<p class="alert alert-danger">
|
||||
<b>Undefer the ballot for {{ doc }}?</b>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form ballot_writeup_form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Change the document shepherd email<br><small>{{ doc.name }}-{{ doc.rev }}</small></h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<p><a class="btn btn-info" href="{{help_url}}">Help on states</a></p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form announcement_text_form %}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Approve {{ charter.canonical_name }}-{{ charter.rev }}</h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<pre>{{ announcement }}</pre>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form ballot_writeup_form %}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<p><a class="btn btn-info" href="{% url "state_help" type="charter" %}">Help on states</a></p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% for field in form.visible_fields %}
|
||||
{% bootstrap_field field %}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>{{ title }}</h1>
|
||||
|
||||
<form role="form" class="change-title" method="post">
|
||||
<form class="change-title" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
<p class="alert alert-info">The text will be submitted as <b>charter-ietf-{{ name }}-{{ next_rev }}</b>.</p>
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<p><a class="btn btn-info" href="{% url "state_help" type="conflict-review" %}">Help on states</a></p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
<p class="alert alert-info">The text will be submitted as <strong>{{ review.canonical_name }}-{{ next_rev }}</strong></p>
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
{% if diff_revisions and diff_revisions|length > 1 %}
|
||||
<h2>Revision differences</h2>
|
||||
|
||||
<form class="form-horizontal diff-form" role="form" action="{{rfcdiff_base_url}}" method="get" target="_blank">
|
||||
<form class="form-horizontal diff-form" action="{{rfcdiff_base_url}}" method="get" target="_blank">
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-sm-2 ">
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<p class="alert alert-info">For a WG, the draft enters the IETF stream.
|
||||
For an RG, the draft enters the IRTF stream.</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
{% origin %}
|
||||
<h1>Change documents replaced by<br><small>{{ doc }}</small></h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<a class="btn btn-info" href="{% url "state_help" type="draft-iesg" %}">Help on states</a>
|
||||
</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
|||
|
||||
<div class="buttonlist">
|
||||
{% for n in next_states %}
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="state" value="{{ n.pk }}">
|
||||
<input class="btn btn-default" type="submit" value="{{ n.name }}">
|
||||
|
@ -51,7 +51,7 @@
|
|||
{% if to_iesg_eval %}
|
||||
<h2>You could also jump directly to</h2>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="state" value="{{ to_iesg_eval.pk }}">
|
||||
<input class="btn btn-warning" type="submit" value="{{ to_iesg_eval.name }}">
|
||||
|
@ -63,7 +63,7 @@
|
|||
{% if prev_state %}
|
||||
<h2>Or revert to previous state</h2>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="state" value="{{ prev_state.pk }}">
|
||||
<input class="btn btn-danger" type="submit" value="Revert to {{ prev_state.name }}">
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
</p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
{{ doc.name }} ({{ doc.group.acronym }}) to {{ doc.intended_std_level.name }}
|
||||
</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ href="https://www.rfc-editor.org/indsubs.html">guidelines</a>.
|
|||
</p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
<div class="form-group">
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<p>This will send a notification to the Secretariat to resurrect the I-D.</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% buttons %}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
This will change the status to Active {% if doc.idinternal.resurrect_requested_by %} and email a notice to {{ doc.idinternal.resurrect_requested_by }}{% endif %}.
|
||||
</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% buttons %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<div class="alert alert-warning">{{ warning }}</div>
|
||||
{% endfor %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<h2>Upload New Revision</h2>
|
||||
{% endif %}
|
||||
|
||||
<form class="upload-material" role="form" method="post" enctype="multipart/form-data" data-nameprefix="{{ document_type.slug }}-{{ group.acronym }}-">
|
||||
<form class="upload-material" method="post" enctype="multipart/form-data" data-nameprefix="{{ document_type.slug }}-{{ group.acronym }}-">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Edit Upcoming Presentations<br><small>{{doc.title}}<br>{{doc.name}}<br>at {{session}}</small></h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load widget_tweaks %}
|
||||
{% load ietf_filters %}
|
||||
|
||||
<form role="form" id="search_form" class="form-horizontal" action="{% url "doc_search" %}">
|
||||
<form id="search_form" class="form-horizontal" action="{% url "doc_search" %}">
|
||||
|
||||
<div class="input-group search_field">
|
||||
{{ form.name|add_class:"form-control"|attr:"placeholder:Document name, number, title, etc." }}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_formset formset %}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
<h1>Edit RFCs affected by status change</h1>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% include "doc/status_change/edit_related_rows.html" %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form class="edit-last-call-text" role="form" method="post">
|
||||
<form class="edit-last-call-text" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form last_call_form %}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<pre>{{ announcement }}</pre>
|
||||
</div>
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<p><a class="btn btn-default" href="{% url "state_help" type="status-change" %}">Help on states</a></p>
|
||||
|
||||
<form class="start-rfc-status-change-review" role="form" method="post">
|
||||
<form class="start-rfc-status-change-review" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
<label class="control-label">Affected RFCs</label>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<p>The text will be submitted as <b>{{ doc.canonical_name }}-{{ next_rev }}</b>:</p>
|
||||
|
||||
<form role="form" enctype="multipart/form-data" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
</ul>
|
||||
</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% buttons %}
|
||||
<input type="submit" class="btn btn-warning" name="confirm" value="Request publication">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
mailing list (will it remain open or should it be closed).
|
||||
</p>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
chairs and delegates, need a datatracker account to actually do
|
||||
so. New accounts can be <a href="{% url "create_account" %}">created here</a>.</p>
|
||||
|
||||
<form class="form-horizontal" role="form" method="post">
|
||||
<form class="form-horizontal" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form layout='horizontal' %}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{# assumes group, form, needs_review, reviewer are in the context #}
|
||||
{% load bootstrap3 %}
|
||||
|
||||
<div role="form" class="form-horizontal">
|
||||
<div class="form-horizontal">
|
||||
<input type="hidden" name="prefix" value="{{ form.prefix|default:"" }}"/>
|
||||
|
||||
{% bootstrap_form form layout='horizontal' %}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
{% endif %}
|
||||
</p>
|
||||
|
||||
<form method="post" role="form" id="reset-charter-milestones">{% csrf_token %}
|
||||
<form method="post" id="reset-charter-milestones">{% csrf_token %}
|
||||
{% for milestone in current_milestones %}
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
datatracker account. New accounts can be <a href="{% url "create_account" %}">created here</a>.
|
||||
</p>
|
||||
|
||||
<form action="" role="form" method="post">
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<h1>Documents on future IESG telechat agendas</h1>
|
||||
|
||||
{% if user|has_role:"Secretariat" %}
|
||||
<form role="form" class="form-inline" method="post">
|
||||
<form class="form-inline" method="post">
|
||||
{% csrf_token %}
|
||||
{% endif %}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" class="add-comment" method="post">
|
||||
<form class="add-comment" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" class="add-email" method="post">
|
||||
<form class="add-email" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form class="ipr-form form-horizontal show-required" role="form" method="post">
|
||||
<form class="ipr-form form-horizontal show-required" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% if form.errors %}
|
||||
|
|
|
@ -104,7 +104,7 @@
|
|||
<div class="alert alert-info">This update was notified to the submitter of the IPR that is being updated on: {{ ipr.update_notified_date|date:"Y-m-d" }}</div>
|
||||
{% endif %}
|
||||
|
||||
<div role="form" class="form-horizontal">
|
||||
<div class="form-horizontal">
|
||||
|
||||
<h2>{% cycle 'I','II','III','IV','V','VI','VII','VIII' as section %}.
|
||||
{% if ipr|to_class_name == "ThirdPartyIprDisclosure" %}Possible{% endif %}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post" class="show-required">
|
||||
<form method="post" class="show-required">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<h1>IPR Search</h1>
|
||||
|
||||
<form class="ipr-search clearfix" role="form">
|
||||
<form class="ipr-search clearfix">
|
||||
{% if user|has_role:"Secretariat" %}
|
||||
<div class="col-md-12">
|
||||
<h2>State Filter</h2>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" class="add-comment" method="post">
|
||||
<form class="add-comment" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% bootstrap_form form %}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% origin %}
|
||||
{{ block.super }}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<input class="btn btn-primary" type="submit" value="Approve" name='do_approval' />
|
||||
</form>
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
<span class="noActionTaken">Action Needed</span>
|
||||
{% endif %}
|
||||
{% if can_take_care %}
|
||||
<form method="post" role="form" class="pull-right">
|
||||
<form method="post" class="pull-right">
|
||||
{% csrf_token %}
|
||||
<input class="btn btn-warning btn-xs" type="submit" value="Mark as action taken" name='do_action_taken'>
|
||||
</form>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
<p class="help-block">Fields marked with <label class="required"></label> are required. For detailed descriptions of the fields see the <a href="{% url "liaisons_field_help" %}">field help</a>.</p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" class="liaisons form-horizontal show-required" method="post" enctype="multipart/form-data" data-ajax-info-url="{% url "ietf.liaisons.views.ajax_get_liaison_info" %}">{% csrf_token %}
|
||||
<form class="liaisons form-horizontal show-required" method="post" enctype="multipart/form-data" data-ajax-info-url="{% url "ietf.liaisons.views.ajax_get_liaison_info" %}">{% csrf_token %}
|
||||
|
||||
{% for fieldset in form.get_fieldsets %}
|
||||
<h2>{{ fieldset.name }}</h2>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
<input type="hidden" name="{{ stage_field }}" value="1">
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
{% if state.rolodex_url %}Please go to <a href="{{ state.rolodex_url }}">{{ state.rolodex_url }}</a> to add these people.{% endif %}
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% for field in form %}{{ field.as_hidden }}{% endfor %}
|
||||
<input type="hidden" name="{{ stage_field }}" value="2">
|
||||
|
@ -37,7 +37,7 @@
|
|||
|
||||
<h2>Edit members again</h2>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
<input type="hidden" name="{{ stage_field }}" value="1">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form enctype="multipart/form-data" role="form" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<p class="alert alert-{{ message.0 }}">{{ message.1 }}</p>
|
||||
{% endif %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
{% endif %}
|
||||
</dl>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
<div class="col-sm-8 col-sm-pull-4">
|
||||
<h3>Provide feedback</h3>
|
||||
|
||||
<form id="feedbackform" role="form" method="post">
|
||||
<form id="feedbackform" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
{% if nomcom|has_publickey %}
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form id="questionnnaireform" role="form" method="post">
|
||||
<form id="questionnnaireform" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
<h2>Nominees by position</h2>
|
||||
|
||||
<form class="form-inline" role="form" method="get">
|
||||
<form class="form-inline" method="get">
|
||||
<div class="form-group">
|
||||
<label>State: </label>
|
||||
<select class="form-control input-sm" name="state">
|
||||
|
@ -67,7 +67,7 @@
|
|||
|
||||
|
||||
{% if is_chair %}
|
||||
<form class="form-inline" id="batch-action-form" method="post" role="form">{% csrf_token %}
|
||||
<form class="form-inline" id="batch-action-form" method="post">{% csrf_token %}
|
||||
{% endif %}
|
||||
|
||||
<table class="table table-condensed table-striped">
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
<p>If you don't have a private key, please contact the group chair. You can leave the key empty and continue navigation without access to the encrypted data.</p>
|
||||
|
||||
<form enctype="multipart/form-data" role="form" method="post">
|
||||
<form enctype="multipart/form-data" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form id="nominateform" role="form" method="post">
|
||||
<form id="nominateform" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
{% if nomcom|has_publickey %}
|
||||
|
||||
<form id="nominate-form" role="form" method="post">
|
||||
<form id="nominate-form" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form id="questionnnaireform" role="form" method="post">
|
||||
<form id="questionnnaireform" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% if need_confirmation %}
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% buttons %}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
{% bootstrap_messages %}
|
||||
|
||||
{% if nomcom|has_publickey %}
|
||||
<form id="nominate-form" role="form" method="post">
|
||||
<form id="nominate-form" method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
{% buttons %}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
<h3>Do you want to remove it?</h3>
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
<input type="hidden" name="remove" value="1">
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<div class="alert alert-{{ message.0 }}">{{ message.1 }}</div>
|
||||
{% endif %}
|
||||
|
||||
<form method="post" role="form">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<table class="table table-condensed table-striped">
|
||||
<thead>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% if formset.forms %}
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
{% if extra_ids %}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
{% bootstrap_messages %}
|
||||
|
||||
<p>You can change the password below for your user {{ username }} below.</p>
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
{% bootstrap_messages %}
|
||||
|
||||
<p>In order to complete the setup of your account with login name {{ email }}, please choose a password:</p>
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<div class="col-md-6">
|
||||
<h1>Account creation</h1>
|
||||
<p>Please enter your email address in order to create a new datatracker account.</p>
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% origin %}
|
||||
<h1>Profile for {{ user.username }}</h1>
|
||||
|
||||
<form class="form-horizontal" role="form" method="post">
|
||||
<form class="form-horizontal" method="post">
|
||||
{% csrf_token %}
|
||||
|
||||
<div class="form-group">
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
{% bootstrap_messages %}
|
||||
|
||||
<form role="form" method="post">
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form form %}
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue