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:
parent
40df75243b
commit
b9586dd570
|
@ -152,13 +152,15 @@ height = (show_weeks ? header_heigth : header_heigth + g_height)
|
||||||
#
|
#
|
||||||
# Days headers
|
# Days headers
|
||||||
#
|
#
|
||||||
if show_days
|
%>
|
||||||
|
<% if show_days %>
|
||||||
|
<%
|
||||||
left = 0
|
left = 0
|
||||||
height = g_height + header_heigth - 1
|
height = g_height + header_heigth - 1
|
||||||
wday = @gantt.date_from.cwday
|
wday = @gantt.date_from.cwday
|
||||||
(@gantt.date_to - @gantt.date_from + 1).to_i.times do
|
|
||||||
width = zoom - 1
|
|
||||||
%>
|
%>
|
||||||
|
<% (@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 %>"
|
<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">
|
class="gantt_hdr">
|
||||||
<%= day_letter(wday) %>
|
<%= day_letter(wday) %>
|
||||||
|
@ -167,8 +169,9 @@ if show_days
|
||||||
left = left + width + 1
|
left = left + width + 1
|
||||||
wday = wday + 1
|
wday = wday + 1
|
||||||
wday = 1 if wday > 7
|
wday = 1 if wday > 7
|
||||||
end
|
%>
|
||||||
end %>
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<%= @gantt.lines.html_safe %>
|
<%= @gantt.lines.html_safe %>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue