Sha256: 432b468c772594d4e91323c886b8dafe447b3290f4900856c01335f8d92b7d2d
Contents?: true
Size: 1.27 KB
Versions: 7
Compression:
Stored size: 1.27 KB
Contents
<h4 class="header"> <%= _("Current Subscription Totals") %> </h4> <% unless Organization.current.present? %> <p class="ca"><%= _("Please select an organization to view subscription totals.") %></p> <% else %> <% subscriptions = Katello::Subscription.in_organization([Organization.current]).includes(:pools) %> <% total_active_subscriptions = Organization.current.active_pools_count %> <% total_expiring_subscriptions = subscriptions.select(&:expiring_soon?).count %> <% total_recently_expired_subscriptions = subscriptions.select(&:recently_expired?).count %> <table class="table table-fixed table-striped table-bordered"> <thead> <tr> <th><%= _("Subscription Status") %></th> <th><%= _("Count") %></th> </tr> </thead> <tbody> <tr> <td><%= _("Active Subscriptions") %></td> <td style="text-align:right;"><%= total_active_subscriptions %></td> </tr> <tr> <td><%= _("Subscriptions Expiring in 120 Days") %></td> <td style="text-align:right;"><%= total_expiring_subscriptions %></td> </tr> <tr> <td><%= _("Recently Expired Subscriptions") %></td> <td style="text-align:right;"><%= total_recently_expired_subscriptions %></td> </tr> </tbody> </table> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems