summaryrefslogtreecommitdiffstats
path: root/app/views/queries/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/queries/index.html.erb')
-rw-r--r--app/views/queries/index.html.erb6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/views/queries/index.html.erb b/app/views/queries/index.html.erb
index 41051758e..98b0dfb72 100644
--- a/app/views/queries/index.html.erb
+++ b/app/views/queries/index.html.erb
@@ -10,15 +10,13 @@
<table class="list">
<% @queries.each do |query| %>
<tr class="<%= cycle('odd', 'even') %>">
- <td>
+ <td class="name">
<%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %>
</td>
- <td align="right">
- <small>
+ <td class="buttons">
<% 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>