]> source.dussan.org Git - redmine.git/commitdiff
replace tabs to spaces and remove trailing white-spaces at app/views/my/account.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 16 Sep 2011 23:55:26 +0000 (23:55 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 16 Sep 2011 23:55:26 +0000 (23:55 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7261 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/my/account.html.erb

index bf0b082978abc4d57999102342ca49ad26020ae3..e3bcd4504dc6dcc0c3bb5bf978ecb48deaf43a37 100644 (file)
                           :html => { :id => 'my_account_form' } do |f| %>
 <div class="splitcontentleft">
 <fieldset class="box tabular">
-       <legend><%=l(:label_information_plural)%></legend>
-       <p><%= f.text_field :firstname, :required => true %></p>
-       <p><%= f.text_field :lastname, :required => true %></p>
-       <p><%= f.text_field :mail, :required => true %></p>
-       <p><%= f.select :language, lang_options_for_select %></p>
-       <% if Setting.openid? %>
-       <p><%= f.text_field :identity_url  %></p>
-       <% end %>
-       
-       <% @user.custom_field_values.select(&:editable?).each do |value| %>
-               <p><%= custom_field_tag_with_label :user, value %></p>
-       <% end %>
-       <%= call_hook(:view_my_account, :user => @user, :form => f) %>
+  <legend><%=l(:label_information_plural)%></legend>
+  <p><%= f.text_field :firstname, :required => true %></p>
+  <p><%= f.text_field :lastname, :required => true %></p>
+  <p><%= f.text_field :mail, :required => true %></p>
+  <p><%= f.select :language, lang_options_for_select %></p>
+  <% if Setting.openid? %>
+  <p><%= f.text_field :identity_url  %></p>
+  <% end %>
+
+  <% @user.custom_field_values.select(&:editable?).each do |value| %>
+    <p><%= custom_field_tag_with_label :user, value %></p>
+  <% end %>
+  <%= call_hook(:view_my_account, :user => @user, :form => f) %>
 </fieldset>
 
 <%= submit_tag l(:button_save) %>
 
 <div class="splitcontentright">
 <fieldset class="box">
-       <legend><%=l(:field_mail_notification)%></legend>
-       <%= render :partial => 'users/mail_notifications' %>
+  <legend><%=l(:field_mail_notification)%></legend>
+  <%= render :partial => 'users/mail_notifications' %>
 </fieldset>
 
 <fieldset class="box tabular">
-       <legend><%=l(:label_preferences)%></legend>
-       <%= render :partial => 'users/preferences' %>
+  <legend><%=l(:label_preferences)%></legend>
+  <%= render :partial => 'users/preferences' %>
 </fieldset>
 
 </div>