calendar.rhtml
41 lines
| 2.5 KiB
| text/html+ruby
|
RhtmlLexer
|
r1133 | <h2><%= "#{month_name(@month)} #{@year}" %></h2> | ||
|
r330 | |||
<table width="100%"> | ||||
|
r736 | <tr><td align="left"> | ||
|
r330 | <%= link_to_remote ('« ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")), | ||
|
r395 | {: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])} | ||||
|
r330 | %> | ||
|
r736 | </td><td align="right"> | ||
|
r330 | <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' »'), | ||
|
r395 | {: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])} | ||||
|
r736 | %> | ||
</td></tr> | ||||
|
r330 | </table> | ||
|
r804 | <%= render :partial => 'common/calendar', :locals => {:calendar => @calendar} %> | ||
|
r330 | |||
<%= image_tag 'arrow_from.png' %> <%= l(:text_tip_task_begin_day) %><br /> | ||||
<%= image_tag 'arrow_to.png' %> <%= l(:text_tip_task_end_day) %><br /> | ||||
|
r512 | <%= image_tag 'arrow_bw.png' %> <%= l(:text_tip_task_begin_end_day) %><br /> | ||
|
r736 | |||
<% content_for :sidebar do %> | ||||
<h3><%= l(:label_calendar) %></h3> | ||||
|
r1373 | <% form_tag({}, :method => :get) do %> | ||
|
r736 | <p><%= select_month(@month, :prefix => "month", :discard_type => true) %> | ||
<%= select_year(@year, :prefix => "year", :discard_type => true) %></p> | ||||
<% @trackers.each do |tracker| %> | ||||
|
r778 | <label><%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %> <%= tracker.name %></label><br /> | ||
|
r736 | <% end %> | ||
<% if @project.active_children.any? %> | ||||
|
r1164 | <br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label> | ||
<%= hidden_field_tag 'with_subprojects', 0 %> | ||||
|
r736 | <% end %> | ||
|
r1164 | <p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p> | ||
|
r736 | <% end %> | ||
<% end %> | ||||
|
r951 | |||
|
r1019 | <% html_title(l(:label_calendar)) -%> | ||