_calendar.rhtml
46 lines
| 1.6 KiB
| text/html+ruby
|
RhtmlLexer
|
r60 | <h3><%= l(:label_calendar) %></h3> | |
<% | |||
@date_from = Date.today - (Date.today.cwday-1) | |||
@date_to = Date.today + (7-Date.today.cwday) | |||
@issues = Issue.find :all, | |||
:conditions => ["issues.project_id in (#{@user.projects.collect{|m| m.id}.join(',')}) AND ((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?))", @date_from, @date_to, @date_from, @date_to], | |||
:include => [:project, :tracker] unless @user.projects.empty? | |||
@issues ||= [] | |||
%> | |||
|
r105 | <table class="list with-cells"> | |
<thead><tr> | |||
<th></th> | |||
|
r60 | <% 1.upto(7) do |d| %> | |
|
r105 | <th align="center" width="14%"><%= day_name(d) %></th> | |
|
r60 | <% end %> | |
|
r105 | </tr></thead> | |
<tbdoy> | |||
|
r60 | <tr height="100"> | |
<% day = @date_from | |||
while day <= @date_to | |||
if day.cwday == 1 %> | |||
|
r105 | <th valign="middle"><%= day.cweek %></th> | |
|
r60 | <% 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 | |||
|
r154 | image_tag('arrow_bw.png') | |
|
r60 | elsif day == i.start_date | |
|
r154 | image_tag('arrow_from.png') | |
|
r60 | elsif day == i.due_date | |
|
r154 | image_tag('arrow_to.png') | |
|
r60 | end %> | |
|
r96 | <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: <%=h i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br /> | |
|
r60 | <% end %> | |
</td> | |||
<%= '</tr><tr height="100">' if day.cwday >= 7 and day!=@date_to %> | |||
<% | |||
day = day + 1 | |||
end %> | |||
</tr> | |||
|
r105 | </tbody> | |
|
r60 | </table> |