Sha256: e52a1c4796417991807ecb155755374fffb83097c46ac30cdacb0f537a72f745

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

<table class="table table-striped" ng-class="{'table-mask': table.working}" ng-show="table.rows.length > 0">
  <thead>
    <tr bst-table-head>
      <th bst-table-column="name" sortable><span translate>Name</span></th>
      <th bst-table-column="consumed"><span translate>Consumed</span></th>
      <th bst-table-column="environment"><span translate>Environment</span></th>
      <th bst-table-column="contentView"><span translate>Content View</span></th>
    </tr>
  </thead>

  <tbody>
    <tr bst-table-row ng-repeat="activationKey in table.rows">
      <td bst-table-cell>
        <a ui-sref="activation-keys.details.info({activationKeyId: activationKey.id})">
          {{ activationKey.name }}
        </a>
        <i class="fa fa-chevron-right selected-icon" ng-show="activationKey.selected"></i>
      </td>
      <td bst-table-cell>{{ activationKey | activationKeyConsumedFilter }}</td>
      <td bst-table-cell>{{ activationKey.environment.name || "" }}</td>
      <td bst-table-cell>{{ activationKey.content_view.name || "" }}</td>
    </tr>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
katello-2.2.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys-table-full.html