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

File last commit:

r7151:efbd527692e0
r7193:60d80e9d314e
Show More
_general.html.erb
7 lines | 454 B | text/plain | TextLexer
/ app / views / users / _general.html.erb
Eric Davis
Refactor: split UsersController#edit into #edit and #update...
r4116 <% labelled_tabular_form_for :user, @user, :url => { :controller => 'users', :action => "update", :tab => nil }, :html => { :method => :put, :class => nil } do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/users/_general.html.erb...
r7151 <%= render :partial => 'form', :locals => { :f => f } %>
<% if @user.active? && email_delivery_enabled? -%>
<p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
<% end -%>
<p><%= submit_tag l(:button_save) %></p>
Jean-Philippe Lang
Split user edit screen into tabs....
r1389 <% end %>