gantt: code layout cleanup html gantt days headers

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10314 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-07 14:35:20 +00:00
parent 40df75243b
commit b9586dd570
1 changed files with 13 additions and 10 deletions

View File

@ -152,23 +152,26 @@ height = (show_weeks ? header_heigth : header_heigth + g_height)
#
# Days headers
#
if show_days
%>
<% if show_days %>
<%
left = 0
height = g_height + header_heigth - 1
wday = @gantt.date_from.cwday
(@gantt.date_to - @gantt.date_from + 1).to_i.times do
width = zoom - 1
%>
<div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>"
class="gantt_hdr">
<%= day_letter(wday) %>
</div>
%>
<% (@gantt.date_to - @gantt.date_from + 1).to_i.times do %>
<% width = zoom - 1 %>
<div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>"
class="gantt_hdr">
<%= day_letter(wday) %>
</div>
<%
left = left + width + 1
wday = wday + 1
wday = 1 if wday > 7
end
end %>
%>
<% end %>
<% end %>
<%= @gantt.lines.html_safe %>