2008-02-15 20:04:27 +03:00
|
|
|
<h2><%= "#{month_name(@month)} #{@year}" %></h2>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
<table width="100%">
|
2007-09-22 17:17:49 +04:00
|
|
|
<tr><td align="left">
|
2007-03-12 20:59:02 +03:00
|
|
|
<%= link_to_remote ('« ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")),
|
2007-04-02 21:12:02 +04:00
|
|
|
{:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] }},
|
|
|
|
{:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects])}
|
2007-03-12 20:59:02 +03:00
|
|
|
%>
|
2007-09-22 17:17:49 +04:00
|
|
|
</td><td align="right">
|
2007-03-12 20:59:02 +03:00
|
|
|
<%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' »'),
|
2007-04-02 21:12:02 +04:00
|
|
|
{:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects] }},
|
|
|
|
{:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1), :tracker_ids => @selected_tracker_ids, :with_subprojects => params[:with_subprojects])}
|
2007-09-22 17:17:49 +04:00
|
|
|
%>
|
|
|
|
</td></tr>
|
2007-03-12 20:59:02 +03:00
|
|
|
</table>
|
|
|
|
|
2007-10-08 00:07:11 +04:00
|
|
|
<%= render :partial => 'common/calendar', :locals => {:calendar => @calendar} %>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
<%= image_tag 'arrow_from.png' %> <%= l(:text_tip_task_begin_day) %><br />
|
|
|
|
<%= image_tag 'arrow_to.png' %> <%= l(:text_tip_task_end_day) %><br />
|
2007-05-06 20:40:33 +04:00
|
|
|
<%= image_tag 'arrow_bw.png' %> <%= l(:text_tip_task_begin_end_day) %><br />
|
2007-09-22 17:17:49 +04:00
|
|
|
|
|
|
|
<% content_for :sidebar do %>
|
|
|
|
<h3><%= l(:label_calendar) %></h3>
|
|
|
|
|
2008-04-30 16:14:15 +04:00
|
|
|
<% form_tag({}, :method => :get) do %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
|
|
|
|
<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
|
|
|
|
|
|
|
|
<% @trackers.each do |tracker| %>
|
2007-10-01 19:22:03 +04:00
|
|
|
<label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %> <%= tracker.name %></label><br />
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
|
|
|
<% if @project.active_children.any? %>
|
2008-02-29 00:57:03 +03:00
|
|
|
<br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label>
|
|
|
|
<%= hidden_field_tag 'with_subprojects', 0 %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
2008-02-29 00:57:03 +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-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_calendar)) -%>
|