##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11397:eaa016bbc304
r11490:9fea2ab6d224
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>