Sha256: eb79a7859df8551b7d33599f31f73aaeef2b809c4e2caf581999a4d96d86d5c4

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

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

  <div data-block="header"></div>
  <div data-block="selection-summary"></div>

  <div class="well" data-block="filters">
    <div>
      <select ng-model="contentView" ng-change="contentViewSelected(contentView)" ng-options="contentView.name for (id, contentView) in contentViews"></select>
      <select ng-model="repository" ng-change="repositorySelected(repository)" ng-options="repository.name for (id, repository) in repositories"></select>
    </div>
  </div>

  <table data-block="table" class="table table-striped table-bordered">
    <thead>
      <tr bst-table-head>
        <th bst-table-column translate>Name</th>
        <th bst-table-column translate>Version</th>
        <th bst-table-column translate>Release</th>
        <th bst-table-column translate>Arch</th>
      </tr>
    </thead>

    <tbody>
      <tr ng-show="detailsTable.rows.length === 0">
        <td colspan="4">
          <span bst-alert="info"><span translate>There are no Packages that match the criteria.</span></span>
        </td>
      </tr>
      <tr bst-table-row ng-repeat="package in detailsTable.rows">
        <td bst-table-cell>{{ package.name }}</td>
        <td bst-table-cell>{{ package.version }}</td>
        <td bst-table-cell>{{ package.release }}</td>
        <td bst-table-cell>{{ package.arch }}</td>
      </tr>
    </tbody>
  </table>

</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
katello-2.2.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html