Sha256: da680e785b9704fbd1e977fcf1e650449c9a32891a6ebae9953a183dbc8796f4

Contents?: true

Size: 1.85 KB

Versions: 10

Compression:

Stored size: 1.85 KB

Contents

<table class="table table-striped table-bordered" ng-class="{'table-mask': table.working}">
  <thead>
    <tr bst-table-head row-select>
      <th bst-table-column="errata_id" sortable>{{ "Errata ID" | translate }}</th>
      <th bst-table-column="title">{{ "Title" | translate }}</th>
      <th bst-table-column="type">{{ "Type" | translate }}</th>
      <th bst-table-column="numberOfContentHosts">{{ "Content Host Counts" | translate }}</th>
      <th bst-table-column="updated" sortable>{{ "Updated" | translate }}</th>
    </tr>
  </thead>

  <tbody>
    <tr bst-table-row ng-repeat="errata in table.rows" row-select="errata">
      <td bst-table-cell>
        <a ui-sref="errata.details.info({errataId: errata.id})">
          {{ errata.errata_id }}
        </a>
        <i class="fa fa-chevron-right selected-icon" ng-show="errata.selected"></i>
      </td>
      <td bst-table-cell>
        {{ errata.title }}
      </td>
      <td bst-table-cell>
          <span ng-show="errata.type == 'security'">
            <i class="fa fa-warning inline-icon" title="{{ 'Security' | translate }}"></i>
          </span>

          <span ng-show="errata.type == 'bugfix'">
            <i class="fa fa-bug inline-icon" title="{{ 'Bug Fix' | translate }}"></i>
          </span>

          <span ng-show="errata.type == 'enhancement'">
            <i class="fa fa-plus-square inline-icon" title="{{ 'Enhancement' | translate }}"></i>
          </span>

        {{ errata.type | errataType}}
        <span ng-show="errata.severity">- {{ errata.severity | errataSeverity}}</span>
      </td>
      <td bst-table-cell>
        <span translate>{{ errata.systems_applicable_count || 0 }} Applicable, </span>
        <span translate>{{ errata.systems_available_count || 0 }} Installable</span>
      </td>
      <td bst-table-cell>{{ errata.updated | date:'shortDate'}}</td>
    </tr>
  </tbody>
</table>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
katello-2.4.5 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.0.rc3 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.4.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html
katello-2.2.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata-table-full.html