##// END OF EJS Templates
Refactor: convert WikiController to a REST resource...
Refactor: convert WikiController to a REST resource git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4303 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4124:e59156b446f1
r4189:c514dd6885af
Show More
show.html.erb
51 lines | 1.9 KiB | text/plain | TextLexer
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <h2><%= l(:label_calendar) %></h2>
Jean-Philippe Lang
Makes saved query filters visible (#2883)....
r2778
Eric Davis
Refactor: convert many of the custom Issue routes to REST resources....
r3927 <% form_tag(calendar_path, :method => :put, :id => 'query_form') do %>
<%= hidden_field_tag('project_id', @project.to_param) if @project%>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <fieldset id="filters" class="collapsible">
<legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend>
<div>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 <%= render :partial => 'queries/filters', :locals => {:query => @query} %>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 </div>
</fieldset>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <p style="float:right;">
Eric Davis
Add the project_id to the Calendar link to month....
r3931 <%= link_to_previous_month(@year, @month, :project => @project) %> | <%= link_to_next_month(@year, @month, :project => @project) %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 </p>
<p class="buttons">
Eric Davis
Added missing labels to the Issue Calendar....
r3632 <%= label_tag('month', l(:label_month)) %>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <%= select_month(@month, :prefix => "month", :discard_type => true) %>
Eric Davis
Added missing labels to the Issue Calendar....
r3632 <%= label_tag('year', l(:label_year)) %>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <%= select_year(@year, :prefix => "year", :discard_type => true) %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 <%= link_to_remote l(:button_apply),
Jean-Philippe Lang
Fixing calendar and gantt links broken by r2317....
r2326 { :url => { :set_filter => (@query.new_record? ? 1 : nil) },
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 :update => "content",
:with => "Form.serialize('query_form')"
}, :class => 'icon icon-checked' %>
<%= link_to_remote l(:button_clear),
Jean-Philippe Lang
Fixes broken filter clearing links on gantt and calendar (#6473)....
r4062 { :url => { :project_id => @project, :set_filter => (@query.new_record? ? 1 : nil) },
:method => :put,
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 :update => "content",
}, :class => 'icon icon-reload' if @query.new_record? %>
</p>
<% end %>
<%= error_messages_for 'query' %>
<% if @query.valid? %>
<%= render :partial => 'common/calendar', :locals => {:calendar => @calendar} %>
Jean-Philippe Lang
Move hardcoded calendar images to css classes....
r3363 <p class="legend cal">
Azamat Hackimov
Rename task to issue in calendar (#6563)...
r4124 <span class="starting"><%= l(:text_tip_issue_begin_day) %></span>
<span class="ending"><%= l(:text_tip_issue_end_day) %></span>
<span class="starting ending"><%= l(:text_tip_issue_begin_end_day) %></span>
Jean-Philippe Lang
Move hardcoded calendar images to css classes....
r3363 </p>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 <% end %>
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>
<% end %>
<% html_title(l(:label_calendar)) -%>