##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11397:eaa016bbc304
r15869:b40d66f39fa8
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>