Sha256: 0b6f521f79eaa56a43e411658cf5068835419fb7a66fb9fcf9de30a6cb0ded4f
Contents?: true
Size: 1.17 KB
Versions: 14
Compression:
Stored size: 1.17 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><%= _("Actions") %></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
14 entries across 14 versions & 1 rubygems