summaryrefslogtreecommitdiffstats
path: root/app/views/common/_calendar.html.erb
blob: 63cb43c97cd9ddb032f00c90af05d45d016b5ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%>
<%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %>
<table class="cal">
<thead>
  <tr>
    <th scope="col" title="<%= l(:label_week) %>" class="week-number"></th>
    <% 7.times do |i| %>
      <th scope="col"><%= day_name((calendar.first_wday + i) % 7) %></th>
    <% end %>
  </tr>
</thead>
<tbody>
<tr>
<% day = calendar.startdt %>
<% while day <= calendar.enddt %>
  <% if day.cwday == calendar.first_wday %>
    <td class='week-number' title='<%= l(:label_week) %>'>
      <%= (day + (11 - day.cwday) % 7).cweek %>
    </td>
  <% end %>
<td class="<%= calendar_day_css_classes(calendar, day) %>">
<p class="day-num"><%= day.day %></p>
<% calendar.events_on(day).each do |i| %>
  <% if i.is_a? Issue %>
  <div class="<%= i.css_classes %> <%= 'starting' if day == i.start_date %> <%= 'ending' if day == i.due_date %> tooltip hascontextmenu">
  <%= "#{i.project} -" unless @project && @project == i.project %>
  <%= link_to_issue i, :truncate => 30 %>
  <span class="tip"><%= render_issue_tooltip i %></span>
  <%= check_box_tag 'ids[]', i.id, false, :style => 'display:none;', :id => nil %>
  </div>
  <% else %>
  <span class="icon icon-package">
    <%= "#{i.project} -" unless @project && @project == i.project %>
    <%= link_to_version i %>
  </span>
  <% end %>
<% end %>
</td>
<% if day.cwday==calendar.last_wday and day!=calendar.enddt %>
  </tr><tr>
<% end %>
<% day = day + 1 %>
<% end %>
</tr>
</tbody>
</table>
<% end %>
<%= context_menu %>