activity.rhtml
56 lines
| 2.9 KiB
| text/html+ruby
|
RhtmlLexer
|
r1182 | <h2><%= l(:label_activity) %></h2> | ||
|
r1288 | <p class="subtitle"><%= "#{l(:label_date_from)} #{format_date(@date_to - @days)} #{l(:label_date_to).downcase} #{format_date(@date_to-1)}" %></p> | ||
|
r330 | |||
|
r1106 | <div id="activity"> | ||
|
r1182 | <% @events_by_day.keys.sort.reverse.each do |day| %> | ||
<h3><%= format_activity_day(day) %></h3> | ||||
|
r1106 | <dl> | ||
<% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%> | ||||
|
r1327 | <dt class="<%= e.event_type %>"><span class="time"><%= format_time(e.event_datetime, false) %></span> | ||
|
r1213 | <%= content_tag('span', h(e.project), :class => 'project') if @project.nil? || @project != e.project %> <%= link_to h(truncate(e.event_title, 100)), e.event_url %></dt> | ||
|
r1427 | <dd><span class="description"><%= format_activity_description(e.event_description) %></span> | ||
|
r1106 | <span class="author"><%= e.event_author if e.respond_to?(:event_author) %></span></dd> | ||
<% end -%> | ||||
</dl> | ||||
<% end -%> | ||||
</div> | ||||
|
r736 | |||
|
r1106 | <%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %> | ||
|
r330 | |||
<div style="float:left;"> | ||||
|
r1182 | <%= link_to_remote(('« ' + l(:label_previous)), | ||
{:update => "content", :url => params.merge(:from => @date_to - @days), :complete => 'window.scrollTo(0,0)'}, | ||||
|
r1246 | {:href => url_for(params.merge(:from => @date_to - @days)), | ||
:title => "#{l(:label_date_from)} #{format_date(@date_to - 2*@days)} #{l(:label_date_to).downcase} #{format_date(@date_to - @days - 1)}"}) %> | ||||
|
r330 | </div> | ||
<div style="float:right;"> | ||||
|
r1182 | <%= link_to_remote((l(:label_next) + ' »'), | ||
{:update => "content", :url => params.merge(:from => @date_to + @days), :complete => 'window.scrollTo(0,0)'}, | ||||
|
r1246 | {:href => url_for(params.merge(:from => @date_to + @days)), | ||
: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 %> | ||||
|
r330 | </div> | ||
|
r1171 | | ||
<p class="other-formats"> | ||||
<%= l(:label_export_to) %> | ||||
<%= link_to 'Atom', params.merge(:format => :atom, :key => User.current.rss_key).delete_if{|k,v|k=="commit"}, :class => 'feed' %> | ||||
</p> | ||||
|
r663 | |||
<% content_for :header_tags do %> | ||||
|
r1213 | <%= auto_discovery_link_tag(:atom, params.merge(:format => 'atom', :year => nil, :month => nil, :key => User.current.rss_key)) %> | ||
|
r663 | <% end %> | ||
|
r736 | |||
<% content_for :sidebar do %> | ||||
|
r1213 | <% form_tag({}, :method => :get) do %> | ||
|
r736 | <h3><%= l(:label_activity) %></h3> | ||
<p><% @event_types.each do |t| %> | ||||
|
r778 | <label><%= check_box_tag "show_#{t}", 1, @scope.include?(t) %> <%= l("label_#{t.singularize}_plural")%></label><br /> | ||
|
r736 | <% end %></p> | ||
|
r1213 | <% if @project && @project.active_children.any? %> | ||
<p><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label></p> | ||||
<%= hidden_field_tag 'with_subprojects', 0 %> | ||||
<% end %> | ||||
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p> | ||||
|
r736 | <% end %> | ||
<% end %> | ||||
|
r951 | |||
|
r1019 | <% html_title(l(:label_activity)) -%> | ||