1
|
<h2><%= l(:label_activity) %></h2>
|
2
|
<p class="subtitle"><%= "#{l(:label_date_from)} #{format_date(@date_to - @days)} #{l(:label_date_to).downcase} #{format_date(@date_to-1)}" %></p>
|
3
|
|
4
|
<div id="activity">
|
5
|
<% @events_by_day.keys.sort.reverse.each do |day| %>
|
6
|
<h3><%= format_activity_day(day) %></h3>
|
7
|
<dl>
|
8
|
<% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
|
9
|
<dt class="<%= e.event_type %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>">
|
10
|
<span class="time"><%= format_time(e.event_datetime, false) %></span>
|
11
|
<%= content_tag('span', h(e.project), :class => 'project') if @project.nil? || @project != e.project %>
|
12
|
<%= link_to format_activity_title(e.event_title), e.event_url %></dt>
|
13
|
<dd><span class="description"><%= format_activity_description(e.event_description) %></span>
|
14
|
<span class="author"><%= e.event_author if e.respond_to?(:event_author) %></span></dd>
|
15
|
<% end -%>
|
16
|
</dl>
|
17
|
<% end -%>
|
18
|
</div>
|
19
|
|
20
|
<%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
|
21
|
|
22
|
<div style="float:left;">
|
23
|
<%= link_to_remote(('« ' + l(:label_previous)),
|
24
|
{:update => "content", :url => params.merge(:from => @date_to - @days), :complete => 'window.scrollTo(0,0)'},
|
25
|
{:href => url_for(params.merge(:from => @date_to - @days)),
|
26
|
:title => "#{l(:label_date_from)} #{format_date(@date_to - 2*@days)} #{l(:label_date_to).downcase} #{format_date(@date_to - @days - 1)}"}) %>
|
27
|
</div>
|
28
|
<div style="float:right;">
|
29
|
<%= link_to_remote((l(:label_next) + ' »'),
|
30
|
{:update => "content", :url => params.merge(:from => @date_to + @days), :complete => 'window.scrollTo(0,0)'},
|
31
|
{:href => url_for(params.merge(:from => @date_to + @days)),
|
32
|
:title => "#{l(:label_date_from)} #{format_date(@date_to)} #{l(:label_date_to).downcase} #{format_date(@date_to + @days - 1)}"}) unless @date_to >= Date.today %>
|
33
|
</div>
|
34
|
|
35
|
<p class="other-formats">
|
36
|
<%= l(:label_export_to) %>
|
37
|
<%= link_to 'Atom', params.merge(:format => :atom, :key => User.current.rss_key).delete_if{|k,v|k=="commit"}, :class => 'feed' %>
|
38
|
</p>
|
39
|
|
40
|
<% content_for :header_tags do %>
|
41
|
<%= auto_discovery_link_tag(:atom, params.merge(:format => 'atom', :year => nil, :month => nil, :key => User.current.rss_key)) %>
|
42
|
<% end %>
|
43
|
|
44
|
<% content_for :sidebar do %>
|
45
|
<% form_tag({}, :method => :get) do %>
|
46
|
<h3><%= l(:label_activity) %></h3>
|
47
|
<p><% @event_types.each do |t| %>
|
48
|
<label><%= check_box_tag "show_#{t}", 1, @scope.include?(t) %> <%= l("label_#{t.singularize}_plural")%></label><br />
|
49
|
<% end %></p>
|
50
|
<% if @project && @project.active_children.any? %>
|
51
|
<p><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label></p>
|
52
|
<%= hidden_field_tag 'with_subprojects', 0 %>
|
53
|
<% end %>
|
54
|
<p>
|
55
|
|
56
|
<label><%= check_box_tag "group_obj_activity", 1, !@noGroupActivity %> <%= l("label_group_obj_activity")%></label><br />
|
57
|
<%= hidden_field_tag 'cont_activity_req', @contActivityReq %>
|
58
|
|
59
|
<%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
|
60
|
<% end %>
|
61
|
<% end %>
|
62
|
|
63
|
<% html_title(l(:label_activity)) -%>
|