##// END OF EJS Templates
Change British English version 'field_effective_date' (#14680, #22315)...
Change British English version 'field_effective_date' (#14680, #22315) en.yml has already changed by r15377 (#14680). git-svn-id: http://svn.redmine.org/redmine/trunk@15406 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11397:eaa016bbc304
r15024:979b5f15db88
Show More
destroy.html.erb
11 lines | 370 B | text/plain | TextLexer
/ app / views / my / destroy.html.erb
Jean-Philippe Lang
Adds the ability for users to delete their own account (#10664). Can be disabled in application settings....
r9283 <h2><%=l(:label_confirmation)%></h2>
<div class="warning">
<p><%= simple_format l(:text_account_destroy_confirmation)%></p>
<p>
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/my/destroy.html.erb...
r11397 <%= form_tag({}) do %>
Jean-Philippe Lang
Adds the ability for users to delete their own account (#10664). Can be disabled in application settings....
r9283 <label><%= check_box_tag 'confirm', 1 %> <%= l(:general_text_Yes) %></label>
<%= submit_tag l(:button_delete_my_account) %> |
Toshi MARUYAMA
replace tabs to spaces and fix indents at app/views/my/destroy.html.erb...
r11397 <%= link_to l(:button_cancel), :action => 'account' %>
<% end %>
Jean-Philippe Lang
Adds the ability for users to delete their own account (#10664). Can be disabled in application settings....
r9283 </p>
</div>