summaryrefslogtreecommitdiffstats
path: root/app/views/queries/index.html.erb
blob: 41051758ea83e9134e2fd53e1533a38ba6c5f429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="contextual">
<%= link_to_if_authorized l(:label_query_new), new_project_query_path(:project_id => @project), :class => 'icon icon-add' %>
</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>
        <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
      </td>
      <td align="right">
        <small>
        <% if query.editable_by?(User.current) %>
        <%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %>
        <%= delete_link query_path(query) %>
        </small>
      <% end %>
      </td>
    </tr>
  <% end %>
  </table>
<% end %>