]> source.dussan.org Git - redmine.git/commitdiff
code layout cleanup app/views/gantts/show.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 21 Jul 2012 11:00:59 +0000 (11:00 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 21 Jul 2012 11:00:59 +0000 (11:00 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10064 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/gantts/show.html.erb

index aeeb127e413c3ba1bff7e3d0e0f6158ba4fffeba..989ff36750f2c1589652b72e7bc396f023fb4d36 100644 (file)
@@ -32,7 +32,8 @@
 
 <%= error_messages_for 'query' %>
 <% if @query.valid? %>
-<% zoom = 1
+<%
+zoom = 1
 @gantt.zoom.times { zoom = zoom * 2 }
 
 subject_width = 330
@@ -53,13 +54,12 @@ end
 
 # Width of the entire chart
 g_width = ((@gantt.date_to - @gantt.date_from + 1) * zoom).to_i
-
-@gantt.render(:top => headers_height + 8, :zoom => zoom, :g_width => g_width, :subject_width => subject_width)
-
+@gantt.render(:top => headers_height + 8,
+              :zoom => zoom,
+              :g_width => g_width,
+              :subject_width => subject_width)
 g_height = [(20 * (@gantt.number_of_rows + 6)) + 150, 206].max
 t_height = g_height + headers_height
-
-
 %>
 
 <% if @gantt.truncated %>
@@ -161,8 +161,9 @@ end %>
 #
 # Today red line (excluded from cache)
 #
-if Date.today >= @gantt.date_from and Date.today <= @gantt.date_to %>
-    <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_height + 1 %>px;left:<%= (((Date.today - @gantt.date_from + 1) * zoom).floor() - 1).to_i %>px;width:10px;border-left: 1px dashed red;">&nbsp;</div>
+%>
+<% if Date.today >= @gantt.date_from and Date.today <= @gantt.date_to %>
+  <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_height + 1 %>px;left:<%= (((Date.today - @gantt.date_from + 1) * zoom).floor() - 1).to_i %>px;width:10px;border-left: 1px dashed red;">&nbsp;</div>
 <% end %>
 
 </div>
@@ -184,7 +185,7 @@ if Date.today >= @gantt.date_from and Date.today <= @gantt.date_to %>
 <% end # query.valid? %>
 
 <% content_for :sidebar do %>
-    <%= render :partial => 'issues/sidebar' %>
+  <%= render :partial => 'issues/sidebar' %>
 <% end %>
 
 <% html_title(l(:label_gantt)) -%>