##// END OF EJS Templates
Rails3: mail: rename app/views/mailer/_issue_text_plain.rhtml to app/views/mailer/_issue.text.erb (#6317)...
Rails3: mail: rename app/views/mailer/_issue_text_plain.rhtml to app/views/mailer/_issue.text.erb (#6317) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7566 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7445:4ecd65c4658c
r7446:ee5f712e8990
Show More
edit.html.erb
11 lines | 523 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
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title(l(:label_user), @user.login, l(:label_administration)) -%>