##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11397:eaa016bbc304
r15119:53710d80fc88
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>