calendar.rhtml
68 lines
| 2.7 KiB
| text/html+ruby
|
RhtmlLexer
|
r42 | <h2><%= l(:label_calendar) %></h2> | |
<table width="100%"> | |||
<tr> | |||
|
r71 | <td align="left" width="150"> | |
<%= link_to_remote ('« ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")), | |||
{:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }}, | |||
{:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))} | |||
%> | |||
|
r42 | </td> | |
|
r71 | <td align="center"> | |
<%= start_form_tag :action => 'calendar', :id => @project %> | |||
<%= select_month(@month, :prefix => "month", :discard_type => true) %> | |||
<%= select_year(@year, :prefix => "year", :discard_type => true) %> | |||
<%= submit_tag l(:button_submit), :class => "button-small" %> | |||
<%= end_form_tag %> | |||
</td> | |||
<td align="right" width="150"> | |||
<%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' »'), | |||
{:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }}, | |||
{:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))} | |||
%> | |||
|
r42 | </td> | |
</tr> | |||
</table> | |||
<br /> | |||
|
r105 | <table class="list with-cells"> | |
<thead> | |||
<tr> | |||
<th></th> | |||
|
r42 | <% 1.upto(7) do |d| %> | |
|
r105 | <th width="14%"><%= day_name(d) %></th> | |
|
r42 | <% end %> | |
</tr> | |||
|
r105 | </thead> | |
<tbody> | |||
|
r42 | <tr height="100"> | |
<% day = @date_from | |||
while day <= @date_to | |||
if day.cwday == 1 %> | |||
|
r105 | <th><%= day.cweek %></th> | |
|
r42 | <% end %> | |
<td valign="top" width="14%" class="<%= day.month==@month ? "even" : "odd" %>"> | |||
<p align="right"><%= day==Date.today ? "<b>#{day.day}</b>" : day.day %></p> | |||
<% day_issues = [] | |||
@issues.each { |i| day_issues << i if i.start_date == day or i.due_date == day } | |||
day_issues.each do |i| %> | |||
<%= if day == i.start_date and day == i.due_date | |||
image_tag('arrow_bw') | |||
elsif day == i.start_date | |||
image_tag('arrow_from') | |||
elsif day == i.due_date | |||
image_tag('arrow_to') | |||
end %> | |||
|
r112 | <small><%= link_to "#{i.tracker.name} ##{i.id}", { :controller => 'issues', :action => 'show', :id => i }, :title => "#{i.subject}" %>: <%=h i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br /> | |
|
r42 | <% end %> | |
</td> | |||
<%= '</tr><tr height="100">' if day.cwday >= 7 and day!=@date_to %> | |||
<% | |||
day = day + 1 | |||
end %> | |||
</tr> | |||
|
r105 | </tbody> | |
|
r42 | </table> | |
|
r56 | <%= image_tag 'arrow_from' %> <%= l(:text_tip_task_begin_day) %><br /> | |
<%= image_tag 'arrow_to' %> <%= l(:text_tip_task_end_day) %><br /> | |||
<%= image_tag 'arrow_bw' %> <%= l(:text_tip_task_begin_end_day) %><br /> |