Sha256: 02dfca19715db5947c941f3076389118f0355a2d31608a0565d8f8ae2a704ec7
Contents?: true
Size: 1.82 KB
Versions: 29
Compression:
Stored size: 1.82 KB
Contents
<span page-title ng-model="subscription">{{ 'Activation Keys for Subscription:' | translate }} {{ subscription.name }}</span> <div class="nutupane"> <h3 translate> Included in Activation Keys </h3> <div bst-alert="info" ng-show="!working && activationKeys.length === 0"> <span translate>This subscription is not associated with any activation keys.</span> </div> <table class="table table-bordered table-striped" bst-table="table" ng-show="activationKeys.length > 0" ng-class="{'table-mask': working}"> <thead> <tr bst-table-head> <th bst-table-column="name" sortable><span translate>Name</span></th> <th bst-table-column="environment"><span translate>Environment</span></th> <th bst-table-column="contentView"><span translate>Content View</span></th> <th bst-table-column="contentView"><span translate>Service Level</span></th> <th bst-table-column="contentView"><span translate>Release Version</span></th> </tr> </thead> <tbody> <tr ng-show="working"> <td colspan="5"> <div class="loading-mask fa-3x" ng-show="working"> <i class="fa fa-spinner fa-spin"></i> {{ "Loading..." | translate }} </div> </td> </tr> <tr bst-table-row ng-repeat="activationKey in activationKeys"> <td bst-table-cell> <a ui-sref="activation-keys.details.info({activationKeyId: activationKey.id})"> {{ activationKey.name }} </a> </td> <td bst-table-cell>{{ activationKey.environment.name || "" }}</td> <td bst-table-cell>{{ activationKey.content_view.name || "" }}</td> <td bst-table-cell>{{ activationKey.service_level || "" }}</td> <td bst-table-cell>{{ activationKey.release_version || "" }}</td> </tr> </tbody> </table> </div>
Version data entries
29 entries across 29 versions & 1 rubygems