##// END OF EJS Templates
Backported r2429, r2430, r248 to r2491 and r2522 from trunk (request and controller objects added to the hooks by default.)....
Backported r2429, r2430, r248 to r2491 and r2522 from trunk (request and controller objects added to the hooks by default.). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.8-stable@2558 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r874:8509cf80f009
r2490:36b5d4f6af04
Show More
index.rhtml
27 lines | 1.0 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added per user custom queries....
r563 <div class="contextual">
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= link_to_if_authorized l(:label_query_new), {:controller => 'queries', :action => 'new', :project_id => @project}, :class => 'icon icon-add' %>
Jean-Philippe Lang
Added per user custom queries....
r563 </div>
<h2><%= l(:label_query_plural) %></h2>
<% if @queries.empty? %>
<p><i><%=l(:label_no_data)%></i></p>
<% else %>
<table class="list">
<% @queries.each do |query| %>
<tr class="<%= cycle('odd', 'even') %>">
<td>
Jean-Philippe Lang
ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged into IssuesController#index...
r874 <%= link_to query.name, :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
Jean-Philippe Lang
Added per user custom queries....
r563 </td>
<td align="right">
<small>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if query.editable_by?(User.current) %>
Jean-Philippe Lang
Added per user custom queries....
r563 <%= 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' %>
</small>
<% end %>
</td>
</tr>
<% end %>
</table>
<% end %>