Sha256: 554acc631c2b2fbc7b2ceac7d39b9e5f5e9f406bea0bfaca3d10ae8f6872356e

Contents?: true

Size: 1.17 KB

Versions: 7

Compression:

Stored size: 1.17 KB

Contents

<table class="table table-bordered table-striped">
  <tr>
    <th>Name</th>
    <th>Content</th>
    <th>Profile</th>
    <th></th>
  </tr>
  <% for policy in @policies %>
    <tr>
      <td>
        <%= link_to_if_authorized(policy.name.to_s, hash_for_policy_dashboard_policy_path(:id => policy.id)) %>
      </td>
      <td>
        <% if !policy.scap_content.nil? %>
          <%= link_to_if_authorized policy.scap_content.title,
                                         hash_for_edit_scap_content_path(:id => policy.scap_content) %>
        <% end %>
      </td>
      <td>
        <%= policy.scap_content_profile.nil? ? "Default" : policy.scap_content_profile.title %>
      </td>
      <td>
        <%= action_buttons(
                display_link_if_authorized(_("Show Guide"), hash_for_policy_path(:id => policy.id)),
                display_link_if_authorized(_("Edit"), hash_for_edit_policy_path(:id => policy.id)),
                display_delete_if_authorized(hash_for_policy_path(:id => policy.id),
                                             :confirm => _("Delete compliance policy %s with all the reports?") % policy.name)
            ) %>
      </td>
    </tr>
  <% end %>
</table>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
foreman_openscap-0.6.1 app/views/policies/_list.html.erb
foreman_openscap-0.6.0 app/views/policies/_list.html.erb
foreman_openscap-0.5.4 app/views/policies/_list.html.erb
foreman_openscap-0.5.3 app/views/policies/_list.html.erb
foreman_openscap-0.5.2 app/views/policies/_list.html.erb
foreman_openscap-0.5.1 app/views/policies/_list.html.erb
foreman_openscap-0.5.0 app/views/policies/_list.html.erb