Skip to content

Commit c0884bb

Browse files
committed
Merged [2488] from olau@. Fixes issue ietf-tools#354.
- Legacy-Id: 2492 Note: SVN reference [2488] has been migrated to Git commit 7cef7c6
1 parent 61053bb commit c0884bb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ietf/templates/idrfc/change_state.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% block morecss %}
66
form.change-state select {
7-
width: 100%;
7+
width: 22em;
88
}
99
form.change-state .actions {
1010
text-align: right;
@@ -26,7 +26,7 @@ <h1>Change state of {{ doc }}</h1>
2626

2727
<p class="helptext">For help on the states, see the <a href="{% url help_states %}">state table</a>.</p>
2828

29-
<form class="change-state" action="" method="POST">
29+
<form class="change-state" action="" method="post">
3030
<table>
3131
{{ form.as_table }}
3232
<tr>
@@ -43,7 +43,7 @@ <h3>Or jump directly to</h3>
4343

4444
<div class="next-states">
4545
{% for n in next_states %}
46-
<form action="" method="POST">
46+
<form action="" method="post">
4747
<input type="hidden" name="state" value="{{ n.next_state.document_state_id }}" />
4848
<input type="hidden" name="substate" value="" />
4949
<input type="submit" value="{{ n.next_state.state }}" />
@@ -55,7 +55,7 @@ <h3>Or jump directly to</h3>
5555
<h3>Or revert to previous state</h3>
5656

5757
<div class="prev-state">
58-
<form action="" method="POST">
58+
<form action="" method="post">
5959
<input type="hidden" name="state" value="{{ doc.idinternal.prev_state_id }}" />
6060
<input type="hidden" name="substate" value="{{ doc.idinternal.prev_sub_state_id|default_if_none:"" }}" />
6161
<input type="submit" value="Back to {{ prev_state_formatted }}" />

0 commit comments

Comments
 (0)