Sha256: 8e8e201f20147b47310bc553bcd2e404a4841c24ff5ad1df6e851caed92f516c
Contents?: true
Size: 866 Bytes
Versions: 7
Compression:
Stored size: 866 Bytes
Contents
<% title _("Provisioning setup") %> <% title_actions new_link(_("Set up provisioning")) %> <table class="<%= table_css_classes %>"> <tr> <th><%= sort :name, :as => _("Provisioning host") %></th> <th><%= _("Smart proxy") %></th> <th><%= _("Subnet") %></th> <th></th> </tr> <% for prov in @provisioners %> <tr> <td><%= link_to_if_authorized h(prov.host.to_s), hash_for_edit_foreman_setup_provisioner_path(prov)%></td> <td><%= prov.smart_proxy.try(:name) %></td> <td><%= "#{prov.subnet.name} (#{prov.subnet.to_label})" if prov.subnet.present? %></td> <td><%= action_buttons(display_delete_if_authorized(hash_for_foreman_setup_provisioner_path(prov), :confirm => _("Delete %s?") % prov.host.to_s)) %></td> </tr> <% end %> </table> <%= page_entries_info @provisioners %> <%= will_paginate @provisioners %>
Version data entries
7 entries across 7 versions & 1 rubygems