##// END OF EJS Templates
remove trailing white-spaces from app/views/issues/bulk_edit.html.erb...
remove trailing white-spaces from app/views/issues/bulk_edit.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7312 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6933:265810bab8b0
r7192:dd3284d844dc
Show More
edit.html.erb
11 lines | 526 B | text/plain | TextLexer
Jean-Philippe Lang
Adds Lock/Unlock/Activate link on user edit screen....
r1733 <div class="contextual">
Eric Davis
Refactor: convert UsersController to resource...
r4117 <%= link_to l(:label_profile), user_path(@user), :class => 'icon icon-user' %>
Jean-Philippe Lang
Adds Lock/Unlock/Activate link on user edit screen....
r1733 <%= change_status_link(@user) %>
Jean-Philippe Lang
Enable ability for administrators to delete users (#7296)....
r4609 <%= link_to(l(:button_delete), @user, :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del') if User.current != @user %>
Jean-Philippe Lang
Adds Lock/Unlock/Activate link on user edit screen....
r1733 </div>
Jean-Philippe Lang
Administration panel breadcrumbs (#3314)....
r2707 <h2><%= link_to l(:label_user_plural), :controller => 'users', :action => 'index' %> &#187; <%=h @user.login %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Refactoring of tabs rendering....
r2757 <%= render_tabs user_settings_tabs %>
Jean-Philippe Lang
Split user edit screen into tabs....
r1389
Toshi MARUYAMA
HTML escape at app/views/users/edit.rhtml....
r6266 <% html_title(l(:label_user), h(@user.login), l(:label_administration)) -%>