Sha256: ace20dbdcfed0bfb0d7ad234b7e78aec7147bb9d29408aea8b3e56ec834eb019
Contents?: true
Size: 1.98 KB
Versions: 8
Compression:
Stored size: 1.98 KB
Contents
<span page-title ng-model="activationKey">{{ 'Content Hosts for Activation Key:' | translate }} {{ activationKey.name }}</span> <div data-extend-template="layouts/details-nutupane.html"> <div data-block="messages"></div> <div data-block="actions"></div> <div data-block="selection-summary"></div> <span data-block="no-rows-message" translate> This activation key is not associated with any content hosts. </span> <div data-block="table"> <table class="table table-bordered table-striped" bst-table="table" ng-class="{'table-mask': detailsTable.working}"> <thead> <tr bst-table-head> <th bst-table-column="name" sortable><span translate>Name</span></th> <th bst-table-column="status" translate> Subscription Status </th> <th bst-table-column="environment" sortable><span translate>Environment</span></th> <th bst-table-column="contentView"><span translate>Content View</span></th> <th bst-table-column="serviceLevel"><span translate>Service Level</span></th> <th bst-table-column="releaseVersion"><span translate>Release Version</span></th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="contentHost in detailsTable.rows" ng-controller="ContentHostStatusController"> <td bst-table-cell> <a ui-sref="content-hosts.details.info({hostId: contentHost.host_id})"> {{ contentHost.name }} </a> </td> <td bst-table-cell> <span class="fa fa-circle" ng-class="getSubscriptionStatusColor(contentHost.entitlementStatus)"> </span> </td> <td bst-table-cell>{{ contentHost.environment.name }}</td> <td bst-table-cell>{{ contentHost.content_view.name || "" }}</td> <td bst-table-cell>{{ contentHost.service_level }}</td> <td bst-table-cell>{{ contentHost.release_ver }}</td> </tr> </tbody> </table> </div> </div>
Version data entries
8 entries across 8 versions & 1 rubygems