##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13964:59c9a071a844
r14954:42b5c332b2c2
Show More
new.html.erb
15 lines | 527 B | text/plain | TextLexer
<h2><%= l :label_password_required %></h2>
<%= form_tag({}, class: 'tabular', id: 'sudo-form') do %>
<%= hidden_field_tag '_method', request.request_method %>
<%= hash_to_hidden_fields @sudo_form.original_fields %>
<div class="box">
<p>
<label for="sudo_password"><%= l :field_password %><span class="required">*</span></label>
<%= password_field_tag :sudo_password, nil, size: 25 %>
</p>
</div>
<%= submit_tag l(:button_submit) %>
<% end %>
<%= javascript_tag "$('#sudo_password').focus();" %>