index.html.erb
25 lines
| 818 B
| text/plain
|
TextLexer
|
r563 | <div class="contextual"> | ||
|
r7529 | <%= link_to_if_authorized l(:label_query_new), new_project_query_path(:project_id => @project), :class => 'icon icon-add' %> | ||
|
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') %>"> | ||||
|
r12038 | <td class="name"> | ||
|
r13661 | <%= link_to query.name, :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %> | ||
|
r563 | </td> | ||
|
r12038 | <td class="buttons"> | ||
|
r7153 | <% if query.editable_by?(User.current) %> | ||
|
r7529 | <%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %> | ||
|
r9754 | <%= delete_link query_path(query) %> | ||
|
r563 | <% end %> | ||
</td> | ||||
</tr> | ||||
<% end %> | ||||
</table> | ||||
<% end %> | ||||