Sha256: 1347b971851fce097ee5e857b40b64c11e5640be9ef8e598d418dfe655ba3eec

Contents?: true

Size: 1.89 KB

Versions: 8

Compression:

Stored size: 1.89 KB

Contents

<span page-title>{{ 'Host Collections' | translate }}</span>

<div data-extend-template="layouts/table-with-header.html">

  <div data-block="header">
    <h2 translate>Host Collections</h2>
  </div>

  <div data-block="list-actions">
    <button type="button" class="btn btn-primary"
            ui-sref="host-collections.new"
            ng-hide="denied('create_host_collections')">
      {{ "Create Host Collection" | translate }}
    </button>
  </div>

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

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

  <div data-block="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="hosts"><span translate>Content Hosts</span></th>
        <th bst-table-column="limit"><span translate>Limit</span></th>
      </tr>
      </thead>

      <tbody>
      <tr bst-table-row ng-repeat="hostCollection in table.rows">
        <td bst-table-cell>
          <a ui-sref="host-collection.info({hostCollectionId: hostCollection.id})">
            {{ hostCollection.name }}
          </a>
          <i class="fa fa-chevron-right selected-icon" ng-show="hostCollection.selected"></i>
        </td>
        <td bst-table-cell>
          <a ui-sref="host-collection.hosts.list({hostCollectionId: hostCollection.id})">
            {{ hostCollection.total_hosts }}
          </a>
        </td>
        <td bst-table-cell>{{ hostCollection.max_hosts | unlimitedFilter:hostCollection.unlimited_hosts }}</td>
      </tr>
      </tbody>
    </table>
  </div>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
katello-3.4.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.0.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
katello-3.4.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html