<%=l(:label_activity)%>: <%= "#{month_name(@month).downcase} #{@year}" %>

<% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>

<%= day_name(day.cwday) %> <%= day.day %>

<% @events_by_day[day].sort {|x,y| y.event_datetime <=> x.event_datetime }.each do |e| -%>
<%= format_time(e.event_datetime, false) %> <%= link_to truncate(e.event_title, 100), e.event_url %>
<% unless e.event_description.blank? -%> <%= format_activity_description(e.event_description) %>
<% end %> <%= e.event_author if e.respond_to?(:event_author) %>
<% end -%>
<% end -%>
<%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
<% prev_params = params.clone.update :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) %> <%= link_to_remote ('« ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")), {:update => "content", :url => prev_params}, {:href => url_for(prev_params)} %>
<% next_params = params.clone.update :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) %> <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' »'), {:update => "content", :url => next_params}, {:href => url_for(next_params)} %>  

<% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, params.merge({:format => 'atom', :year => nil, :month => nil, :key => User.current.rss_key})) %> <% end %> <% content_for :sidebar do %> <% form_tag do %>

<%= l(:label_activity) %>

<% @event_types.each do |t| %>
<% end %>

<%= submit_tag l(:button_apply), :class => 'button-small' %>

<% end %> <% end %> <% html_title(l(:label_activity)) -%>