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 %>">
|
2008-11-09 17:52:16 +03: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>
|
2008-02-04 22:37:23 +03:00
|
|
|
<span class="author"><%= e.event_author if e.respond_to?(:event_author) %></span></dd>
|
|
|
|
<% 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;">
|
2008-03-05 16:44:08 +03:00
|
|
|
<%= link_to_remote(('« ' + l(:label_previous)),
|
2009-01-26 20:43:58 +03:00
|
|
|
{:update => "content", :url => params.merge(:from => @date_to - @days - 1), :method => :get, :complete => 'window.scrollTo(0,0)'},
|
2008-11-09 20:53:30 +03:00
|
|
|
{:href => url_for(params.merge(:from => @date_to - @days - 1)),
|
2009-03-13 22:03:34 +03:00
|
|
|
: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;">
|
2008-03-05 16:44:08 +03:00
|
|
|
<%= link_to_remote((l(:label_next) + ' »'),
|
2009-01-26 20:43:58 +03:00
|
|
|
{:update => "content", :url => params.merge(:from => @date_to + @days - 1), :method => :get, :complete => 'window.scrollTo(0,0)'},
|
2008-11-09 20:53:30 +03:00
|
|
|
{:href => url_for(params.merge(:from => @date_to + @days - 1)),
|
2009-03-13 22:03:34 +03:00
|
|
|
: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| %>
|
|
|
|
<%= f.link_to 'Atom', :url => params.merge(:from => nil, :key => User.current.rss_key) %>
|
|
|
|
<% 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) %>
|
|
|
|
<%= link_to(l("label_#{t.singularize}_plural"), {"show_#{t}" => 1, :user_id => params[:user_id]})%>
|
|
|
|
<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? %>
|
2009-12-06 13:28:20 +03: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) -%>
|