Sha256: 12029e02e9aa520c2db930525134858bc54a4af1f818f2f89632459fd53b35e5

Contents?: true

Size: 1.72 KB

Versions: 5

Compression:

Stored size: 1.72 KB

Contents

<span page-title>{{ 'GPG Keys' | translate }}</span>

<div data-extend-template="layouts/table-with-header.html">
  <div data-block="header">
    <h2 translate>GPG Keys</h2>
  </div>

  <div data-block="list-actions">
    <button class="btn btn-default" ui-sref="gpg-keys.new" ng-hide="denied('create_gpg_keys')">
      <span translate>New GPG Key</span>
    </button>
  </div>

  <span data-block="no-rows-message" translate>
    You currently don't have any GPG keys, you can add GPG keys using the button on the right.
  </span>

  <span data-block="no-search-results-message" translate>
    Your search returned zero GPG keys.
  </span>

  <div data-block="table">
    <table bst-table="table"
           class="table table-striped table-bordered"
           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="organization"><span translate>Organization</span></th>
        <th bst-table-column="products" class="number-cell"><span translate>Product Count</span></th>
        <th bst-table-column class="number-cell"><span translate>Repository Count</span></th>
      </tr>
      </thead>

      <tbody>
      <tr bst-table-row ng-repeat="gpgKey in table.rows">
        <td bst-table-cell>
          <a ui-sref="gpg-key.info({gpgKeyId: gpgKey.id})">{{ gpgKey.name }}</a>
        </td>
        <td bst-table-cell>{{ gpgKey.organization.name }}</td>
        <td bst-table-cell class="number-cell">{{ gpgKey.products.length || 0 }}</td>
        <td bst-table-cell class="number-cell">{{ gpgKey.repositories.length || 0 }}</td>
      </tr>
      </tbody>
    </table>

  </div>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
katello-3.3.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html