##// END OF EJS Templates
Restores the "New issue" tab in the project menu and makes it optional (#6204)....
Restores the "New issue" tab in the project menu and makes it optional (#6204). git-svn-id: http://svn.redmine.org/redmine/trunk@15407 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13661:b778c51e9049
r15025:4019ba76ab30
Show More
index.html.erb
25 lines | 818 B | text/plain | TextLexer
Jean-Philippe Lang
Added per user custom queries....
r563 <div class="contextual">
Etienne Massip
Refactor : convert queries to REST resources (also fixes #9108)....
r7529 <%= link_to_if_authorized l(:label_query_new), new_project_query_path(: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') %>">
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="name">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <%= link_to query.name, :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
Jean-Philippe Lang
Added per user custom queries....
r563 </td>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="buttons">
Toshi MARUYAMA
remove trailing white-spaces from app/views/queries/index.html.erb...
r7153 <% if query.editable_by?(User.current) %>
Etienne Massip
Refactor : convert queries to REST resources (also fixes #9108)....
r7529 <%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link query_path(query) %>
Jean-Philippe Lang
Added per user custom queries....
r563 <% end %>
</td>
</tr>
<% end %>
</table>
<% end %>