]> source.dussan.org Git - redmine.git/commitdiff
replace tabs to spaces at app/views/my/page.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 17 Sep 2011 13:14:54 +0000 (13:14 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 17 Sep 2011 13:14:54 +0000 (13:14 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7342 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/my/page.html.erb

index ac70563f5a88e857b85c82145b54a8a99894bc59..9cabe211f553f00b9db6486be43a0a958278b191 100644 (file)
@@ -5,30 +5,30 @@
 <h2><%=l(:label_my_page)%></h2>
 
 <div id="list-top">
-       <% @blocks['top'].each do |b|
-          next unless MyController::BLOCKS.keys.include? b     %>
-       <div class="mypage-box">
-               <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
-       </div>
-       <% end if @blocks['top'] %>
+  <% @blocks['top'].each do |b|
+     next unless MyController::BLOCKS.keys.include? b  %>
+  <div class="mypage-box">
+    <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
+  </div>
+  <% end if @blocks['top'] %>
 </div>
 
 <div id="list-left" class="splitcontentleft">
-       <% @blocks['left'].each do |b|
-          next unless MyController::BLOCKS.keys.include? b %>
-       <div class="mypage-box">
-               <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
-       </div>
-       <% end if @blocks['left'] %>
+  <% @blocks['left'].each do |b|
+     next unless MyController::BLOCKS.keys.include? b %>
+  <div class="mypage-box">
+    <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
+  </div>
+  <% end if @blocks['left'] %>
 </div>
 
 <div id="list-right" class="splitcontentright">
-       <% @blocks['right'].each do |b|
-          next unless MyController::BLOCKS.keys.include? b %>
-       <div class="mypage-box">
-               <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
-       </div>
-       <% end if @blocks['right'] %>
+  <% @blocks['right'].each do |b|
+     next unless MyController::BLOCKS.keys.include? b %>
+  <div class="mypage-box">
+    <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
+  </div>
+  <% end if @blocks['right'] %>
 </div>
 
 <%= context_menu :controller => 'issues', :action => 'context_menu' %>