Sha256: 97ae258da5ed6cac632dde0e21fc8c59e867f3ed046416a20d292f0b840b9d49
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
<% title _("Discovery Rules") %> <% title_actions new_link(_("Create Rule")), help_button %> <table class="<%= table_css_classes('table-fixed') %>"> <tr> <th><%= sort :name, :as => s_("DiscoveryRule|Name") %></th> <th><%= sort :priority, :as => s_("DiscoveryRule|Priority") %></th> <th><%= sort :search, :as => s_("DiscoveryRule|Query") %></th> <th><%= _("Host Group") %></th> <th><%= _("Hosts/Limit") %></th> <th><%= sort :enabled, :as => s_("DiscoveryRule|Enabled") %></th> <th></th> </tr> <% for rule in @discovery_rules %> <tr> <td class='col-md-3'><%= link_to_if_authorized(trunc_with_tooltip(rule.name), hash_for_edit_discovery_rule_path(:id => rule).merge(:auth_object => rule, :authorizer => authorizer)) %></td> <td><%= rule.priority %></td> <td><%= trunc_with_tooltip(rule.search) %></td> <td><%= label_with_link(rule.hostgroup, 26, authorizer) %></td> <td><%= rule.hosts.count %> / <%= rule.max_count %></td> <td><%= rule.enabled %></td> <td><%= action_buttons(*permitted_discovery_actions(rule)) %></td> </tr> <% end %> </table> <%= will_paginate_with_info @discovery_rules %>
Version data entries
3 entries across 3 versions & 1 rubygems