##// 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_modal.html.erb
18 lines | 664 B | text/plain | TextLexer
/ app / views / sudo_mode / _new_modal.html.erb
Jean-Philippe Lang
Require password re-entry for sensitive actions (#19851)....
r13951 <h3 class="title"><%= l(:label_password_required) %></h3>
<%= form_tag({}, remote: true) do %>
<%= hidden_field_tag '_method', request.request_method %>
<%= hash_to_hidden_fields @sudo_form.original_fields %>
<%= render_flash_messages %>
<div class="box tabular">
<p>
<label for="sudo_password"><%= l :field_password %><span class="required">*</span></label>
<%= password_field_tag :sudo_password, nil, size: 25 %>
</p>
</div>
<p class="buttons">
Jean-Philippe Lang
Use existing label for password submission (#19851)....
r13953 <%= submit_tag l(:button_submit), onclick: "hideModal(this);" %>
Jean-Philippe Lang
Require password re-entry for sensitive actions (#19851)....
r13951 <%= submit_tag l(:button_cancel), name: nil, onclick: "hideModal(this);", type: 'button' %>
</p>
<% end %>