##// END OF EJS Templates
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
Move the filters buttons inside the filters fieldset on the issue list (closes #614). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1262 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1247:f5b5688e8ad8
r1247:f5b5688e8ad8
Show More
index.rhtml
67 lines | 3.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <% if @query.new_record? %>
<h2><%=l(:label_issue_plural)%></h2>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_issue_plural)) %>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673
Jean-Philippe Lang
Trac importer: user can now choose between sqlite and sqlite3 adapter for Trac database....
r881 <% form_tag({ :controller => 'queries', :action => 'new' }, :id => 'query_form') do %>
<%= hidden_field_tag('project_id', @project.id) if @project %>
Jean-Philippe Lang
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
r1247 <fieldset id="filters"><legend><%= l(:label_filter_plural) %></legend>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <%= render :partial => 'queries/filters', :locals => {:query => @query} %>
Jean-Philippe Lang
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
r1247 <div class="buttons">
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <%= link_to_remote l(:button_apply),
{ :url => { :set_filter => 1 },
:update => "content",
:with => "Form.serialize('query_form')"
Jean-Philippe Lang
Fixed: Update of time entry fails when the issue has been moved to an other project....
r896 }, :class => 'icon icon-checked' %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874
<%= link_to_remote l(:button_clear),
{ :url => { :set_filter => 1 },
:update => "content",
}, :class => 'icon icon-reload' %>
<% if current_role && current_role.allowed_to?(:save_queries) %>
<%= link_to l(:button_save), {}, :onclick => "$('query_form').submit(); return false;", :class => 'icon icon-save' %>
<% end %>
</div>
Jean-Philippe Lang
Move the filters buttons inside the filters fieldset on the issue list (closes #614)....
r1247 </fieldset>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <% end %>
<% else %>
<div class="contextual">
<% if @query.editable_by?(User.current) %>
<%= link_to l(:button_edit), {:controller => 'queries', :action => 'edit', :id => @query}, :class => 'icon icon-edit' %>
<%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => @query}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
<% end %>
</div>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <h2><%=h @query.name %></h2>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <div id="query_form"></div>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title @query.name %>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
<%= error_messages_for 'query' %>
<% if @query.valid? %>
<% if @issues.empty? %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% else %>
Jean-Philippe Lang
Added the ability to customize columns of a saved query....
r771 <%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %>
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></p>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171
<p class="other-formats">
<%= l(:label_export_to) %>
<span><%= link_to 'Atom', {:format => 'atom', :key => User.current.rss_key}, :class => 'feed' %></span>
<span><%= link_to 'CSV', {:format => 'csv'}, :class => 'csv' %></span>
<span><%= link_to 'PDF', {:format => 'pdf'}, :class => 'pdf' %></span>
</p>
Jean-Philippe Lang
Added a cross-project issue list. It displays the issues of all the projects visible by the user....
r673 <% end %>
<% end %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>
<% end if @project%>
Jean-Philippe Lang
Added atom feed on the new cross-project issue list....
r675
<% content_for :header_tags do %>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <%= auto_discovery_link_tag(:atom, {:query_id => @query, :format => 'atom', :page => nil, :key => User.current.rss_key}, :title => l(:label_issue_plural)) %>
<%= auto_discovery_link_tag(:atom, {:action => 'changes', :query_id => @query, :format => 'atom', :page => nil, :key => User.current.rss_key}, :title => l(:label_changes_details)) %>
Jean-Philippe Lang
Fixed: context menu not available if the initial issue list is empty....
r1119 <%= javascript_include_tag 'context_menu' %>
<%= stylesheet_link_tag 'context_menu' %>
Jean-Philippe Lang
Added atom feed on the new cross-project issue list....
r675 <% end %>
Jean-Philippe Lang
Fixed: context menu not available if the initial issue list is empty....
r1119
<div id="context-menu" style="display: none;"></div>
<%= javascript_tag "new ContextMenu('#{url_for(:controller => 'issues', :action => 'context_menu')}')" %>