2008-11-30 16:38:07 +03:00
|
|
|
<h2><%= @author.nil? ? l(:label_activity) : l(:label_user_activity, link_to_user(@author)) %></h2>
|
2009-03-13 22:03:34 +03:00
|
|
|
<p class="subtitle"><%= l(:label_date_from_to, :start => format_date(@date_to - @days), :end => format_date(@date_to-1)) %></p>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2008-02-04 22:37:23 +03:00
|
|
|
<div id="activity">
|
2008-03-05 16:44:08 +03:00
|
|
|
<% @events_by_day.keys.sort.reverse.each do |day| %>
|
|
|
|
<h3><%= format_activity_day(day) %></h3>
|
2008-02-04 22:37:23 +03:00
|
|
|
<dl>
|
|
|
|
<% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
|
2008-10-30 05:58:04 +03:00
|
|
|
<dt class="<%= e.event_type %> <%= User.current.logged? && e.respond_to?(:event_author) && User.current == e.event_author ? 'me' : nil %>">
|
2011-09-17 14:18:39 +04:00
|
|
|
<%= avatar(e.event_author, :size => "24") if e.respond_to?(:event_author) %>
|
2008-06-23 21:01:21 +04:00
|
|
|
<span class="time"><%= format_time(e.event_datetime, false) %></span>
|
2008-06-04 22:13:14 +04:00
|
|
|
<%= content_tag('span', h(e.project), :class => 'project') if @project.nil? || @project != e.project %>
|
|
|
|
<%= link_to format_activity_title(e.event_title), e.event_url %></dt>
|
2008-05-21 00:49:06 +04:00
|
|
|
<dd><span class="description"><%= format_activity_description(e.event_description) %></span>
|
2011-08-02 16:53:29 +04:00
|
|
|
<span class="author"><%= link_to_user(e.event_author) if e.respond_to?(:event_author) %></span></dd>
|
2008-02-04 22:37:23 +03:00
|
|
|
<% end -%>
|
|
|
|
</dl>
|
|
|
|
<% end -%>
|
|
|
|
</div>
|
2007-09-22 17:17:49 +04:00
|
|
|
|
2008-02-04 22:37:23 +03:00
|
|
|
<%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
<div style="float:left;">
|
2011-09-17 10:02:24 +04:00
|
|
|
<%= link_to_content_update("\xc2\xab " + l(:label_previous),
|
2011-04-03 18:01:32 +04:00
|
|
|
params.merge(:from => @date_to - @days - 1),
|
|
|
|
:title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1))) %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
|
|
|
<div style="float:right;">
|
2011-09-17 10:02:24 +04:00
|
|
|
<%= link_to_content_update(l(:label_next) + " \xc2\xbb",
|
2011-04-03 18:01:32 +04:00
|
|
|
params.merge(:from => @date_to + @days - 1),
|
|
|
|
:title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1))) unless @date_to >= Date.today %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
2008-03-05 11:25:22 +03:00
|
|
|
|
2009-01-29 16:53:17 +03:00
|
|
|
<% other_formats_links do |f| %>
|
2011-09-17 14:18:39 +04:00
|
|
|
<%= f.link_to 'Atom', :url => params.merge(:from => nil, :key => User.current.rss_key) %>
|
2009-01-29 16:53:17 +03:00
|
|
|
<% end %>
|
2007-08-29 20:52:35 +04:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
2008-11-30 15:14:12 +03:00
|
|
|
<%= auto_discovery_link_tag(:atom, params.merge(:format => 'atom', :from => nil, :key => User.current.rss_key)) %>
|
2007-08-29 20:52:35 +04:00
|
|
|
<% end %>
|
2007-09-22 17:17:49 +04:00
|
|
|
|
|
|
|
<% content_for :sidebar do %>
|
2008-03-11 22:33:38 +03:00
|
|
|
<% form_tag({}, :method => :get) do %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<h3><%= l(:label_activity) %></h3>
|
2008-07-27 21:54:09 +04:00
|
|
|
<p><% @activity.event_types.each do |t| %>
|
2009-02-27 21:34:08 +03:00
|
|
|
<%= check_box_tag "show_#{t}", 1, @activity.scope.include?(t) %>
|
2011-10-29 05:21:21 +04:00
|
|
|
<label for="show_<%=t%>"><%= link_to(l("label_#{t.singularize}_plural"), {"show_#{t}" => 1, :user_id => params[:user_id]})%></label>
|
2009-02-27 21:34:08 +03:00
|
|
|
<br />
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %></p>
|
2009-01-24 14:31:15 +03:00
|
|
|
<% if @project && @project.descendants.active.any? %>
|
2011-09-17 14:18:39 +04:00
|
|
|
<%= hidden_field_tag 'with_subprojects', 0 %>
|
2008-03-11 22:33:38 +03:00
|
|
|
<p><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label></p>
|
|
|
|
<% end %>
|
2008-12-01 20:27:44 +03:00
|
|
|
<%= hidden_field_tag('user_id', params[:user_id]) unless params[:user_id].blank? %>
|
2008-03-11 22:33:38 +03:00
|
|
|
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2008-11-30 15:12:06 +03:00
|
|
|
<% html_title(l(:label_activity), @author) -%>
|