Sha256: a2bed83474062fbc3f274c6546ab6ccf6e8f36976e623fb3cd48624bf37822de

Contents?: true

Size: 1.57 KB

Versions: 2

Compression:

Stored size: 1.57 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="consumed" class="align-center"><span translate>Consumed</span></th>
      <th bst-table-column="type"><span translate>Type</span></th>
      <th bst-table-column="startDate"><span translate>Starts</span></th>
      <th bst-table-column="endDate"><span translate>Expires</span></th>
      <th bst-table-column="supportLevel"><span translate>Support Level</span></th>
      <th bst-table-column="contractNumber"><span translate>Contract</span></th>
      <th bst-table-column="accountNumber"><span translate>Account</span></th>
    </tr>
  </thead>

  <tbody>
    <tr bst-table-row ng-repeat-start="(name, subscriptions) in groupedSubscriptions">
      <td bst-table-cell colspan="7">
        <b>{{ name }}</b>
      </td>
    </tr>
    <tr bst-table-row ng-repeat-end ng-repeat="subscription in subscriptions">
      <td bst-table-cell>
        <a ui-sref="subscriptions.details.info({subscriptionId: subscription.id})">
          {{ subscription | subscriptionConsumedFilter }}
        </a>
      </td>
      <td bst-table-cell>{{ subscription.type }}</td>
      <td bst-table-cell>{{ subscription.start_date | date:"shortDate" }}</td>
      <td bst-table-cell>{{ subscription.end_date | date:"shortDate" }}</td>
      <td bst-table-cell>{{ subscription.support_level }}</td>
      <td bst-table-cell>{{ subscription.contract_number }}</td>
      <td bst-table-cell>{{ subscription.account_number }}</td>
    </tr>
  </tbody>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
katello-2.4.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-full.html
katello-2.4.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/subscriptions-table-full.html