Sha256: 4100e8d1c1636f8f8002a6ed35f894a804d53a4b2b03c55b9793c0c413490224

Contents?: true

Size: 1.84 KB

Versions: 11

Compression:

Stored size: 1.84 KB

Contents

<span page-title ng-model="hostCollection">{{ 'Content Hosts for: ' | translate }} {{ hostCollection.name }}</span>

<div data-extend-template="layouts/details-nutupane.html">

  <div data-block="messages"></div>

  <div data-block="actions">
    <div ng-hide="denied('edit_hosts')" class="nutupane-actions fr">
       <button class="btn btn-primary"
               translate
               ng-disabled="detailsTable.getSelected().length == 0 || isRemoving"
               ng-click="removeSelected()">
         Remove Selected
       </button>
    </div>
  </div>

  <span data-block="no-rows-message" translate>
    You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.
  </span>

  <div data-block="table">
    <table ng-class="{'table-mask': detailsTable.working}"
           class="table table-full table-striped"
           ng-show="detailsTable.rows.length > 0">
      <thead>
        <tr bst-table-head row-select>
          <th bst-table-column="name" translate>Name</th>
          <th bst-table-column="environment" translate>Environment</th>
          <th bst-table-column="content_view" translate>Content View</th>
        </tr>
      </thead>

      <tbody>
        <tr bst-table-row ng-repeat="host in detailsTable.rows">
          <td class="row-select">
            <input type="checkbox"
                   ng-model="host.selected"
                   ng-change="itemSelected(host)"/>
          </td>
          <td bst-table-cell >
            <a ui-sref="content-hosts.details.info({hostId: host.id})">
              {{ host.name}}
            </a>
          </td>
          <td bst-table-cell >{{ host.content_facet_attributes.lifecycle_environment.name}}</td>
          <td bst-table-cell >{{ host.content_facet_attributes.content_view.name}}</td>
        </tr>

      </tbody>
    </table>
  </div>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
katello-3.1.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.1.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.1.0.rc2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.1.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.0.rc7 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.0.rc5 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.0.rc4 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
katello-3.0.0.rc3 engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html