Sha256: 2ce2ccfc1435435683b0f84241e0f0134d4c667c2506a3c51683839195b86e8e
Contents?: true
Size: 679 Bytes
Versions: 94
Compression:
Stored size: 679 Bytes
Contents
<% if @dynamic -%> <div class="alert alert-info alert-dismissable"> <p><%= _("The final host list may change because the selected query is dynamic. It will be rerun during execution.") %></p> </div> <% end -%> <% if @hosts.any? -%> <ul> <% @hosts.each do |host| -%> <li><%= link_to h(host.name), host_path(host), :target => '_blank' %></li> <% end -%> <% if @additional > 0 -%> <li><%= link_to(n_('...and %{count} more', '...and %{count} more', @additional) % {:count => @additional}, hosts_path(:search => @query, :page => 2), :target => '_blank') %></li> <% end -%> </ul> <% else -%> <h3><%= _("No hosts found.") %></h3> <% end -%>
Version data entries
94 entries across 94 versions & 1 rubygems