Sha256: 8bf5b2cf2dbec35bd26a1f14707da1ff5c71cb7c4187eaba8fccc8b1d91c4377

Contents?: true

Size: 1.78 KB

Versions: 10

Compression:

Stored size: 1.78 KB

Contents

<% javascript 'foreman_scc_manager/scc_accounts'  %>
<% title _("SUSE subscriptions") %>
<% title_actions new_link(_("Add SCC account")) %>

<table class="<%= table_css_classes 'table-two-pane table_fixed' %>">
  <thead>
    <tr>
      <th class="col-md-4"><%= sort :name %></th>
      <th class="col-md-3"><%= _("Products") %></th>
      <th class="col-md-3"><%= _("Last synced") %></th>
      <th class="col-md-2"><%= _("Actions") %></th>
    </tr>
  </thead>
  <tbody>
    <% @scc_accounts.each do |scc_account| %>
      <tr>
        <td class="display-two-pane ellipsis">
          <%= link_to_if_authorized(scc_account.name, hash_for_edit_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer)) %>
        </td>
        <td><%= scc_account.scc_products_with_repos_count.to_s %></td>
        <td><%= link_to_if(scc_account.sync_task, scc_account.sync_status, scc_account.sync_task) %></td>
        <td>
          <%= action_buttons(
            display_link_if_authorized(_("Select products"), hash_for_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer, :permission => 'view_scc_accounts')),
            display_link_if_authorized(_("Sync"), hash_for_sync_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer),
                                       :method => :put),
            display_delete_if_authorized(hash_for_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer, :permission => 'delete_scc_accounts'),
                                         :data => { :confirm => _("Delete %s?") % scc_account.to_s })

          ) %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

<%= will_paginate_with_info @scc_accounts %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
foreman_scc_manager-1.8.16 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.15 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.13 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.12 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.10 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.9 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.8 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.7 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.6 app/views/scc_accounts/index.html.erb
foreman_scc_manager-1.8.5 app/views/scc_accounts/index.html.erb