Mercurial > hg > soundsoftware-site
view app/views/queries/index.html.erb @ 1524:82fac3dcf466 redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 11 Sep 2014 10:24:38 +0100 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
<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 class="name"> <%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %> </td> <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) %> <% end %> </td> </tr> <% end %> </table> <% end %>