Sha256: ae639f634a45d016f572212d917d43e45e3274213a20a7187f7d8244da4eb900

Contents?: true

Size: 1.62 KB

Versions: 6

Compression:

Stored size: 1.62 KB

Contents

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

  <div data-block="list-actions">
    <button class="btn btn-primary"
            ng-disabled="table.numSelected === 0"
            ng-show="isState('content-view.filter.package_group.list') && permitted('edit_content_views', contentView)"
            ng-click="removePackageGroups(filter)">
      <span translate>Remove Package Group</span>
    </button>

    <button class="btn btn-primary"
            ng-disabled="table.numSelected === 0"
            ng-show="isState('content-view.filter.package_group.available') && permitted('edit_content_views', contentView)"
            ng-click="addPackageGroups(filter)">
      <span translate>Add Package Group</span>
    </button>
  </div>

  <div data-block="table">
    <table class="table table-striped table-bordered" ng-class="{'table-mask': table.working}">

      <thead>
        <tr bst-table-head row-select>
          <th bst-table-column><span translate>Name</span></th>
          <th bst-table-column><span translate>Product</span></th>
          <th bst-table-column><span translate>Repository</span></th>
          <th bst-table-column><span translate>Description</span></th>
        </tr>
      </thead>

      <tbody>
        <tr bst-table-row ng-repeat="packageGroup in table.rows" row-select="packageGroup">
          <td bst-table-cell>{{ packageGroup.name }}</td>
          <td bst-table-cell>{{ packageGroup.repository.product.name }}</td>
          <td bst-table-cell>{{ packageGroup.repository.name }}</td>
          <td bst-table-cell>{{ packageGroup.description }}</td>
        </tr>
      </tbody>
    </table>
  </div>

</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
katello-3.3.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
katello-3.3.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html