Sha256: 4f2191104104871bef3d371538196ae57caf48a6ecde14bc24c4d4e5e159a67c

Contents?: true

Size: 1.92 KB

Versions: 6

Compression:

Stored size: 1.92 KB

Contents

<span page-title ng-model="contentView">{{ 'Available Puppet Modules for Content View:' | translate }} {{ contentView.name }}</span>

<header data-block="sub-header">
  <h3 translate>
    Select A New Puppet Module To Add
  </h3>
</header>

<div data-extend-template="layouts/partials/table.html">
  <span data-block="no-rows-message" translate>
    No puppet modules found
  </span>

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

  <div data-block="search">
    <div class="col-sm-3">
      <div class="input-group">
        <input type="text"
               class="form-control"
               placeholder="{{ 'Filter...' | translate }}"
               ng-model="table.searchTerm"
               bst-on-enter="table.search(table.searchTerm)"
               ng-trim="false"
               uib-typeahead="item.label for item in table.fetchAutocomplete($viewValue)"
               typeahead-template-url="components/views/autocomplete-scoped-search.html"/>
        <span class="input-group-btn">
          <button ng-click="table.search(table.searchTerm)" class="btn btn-default" type="button"><i class="fa fa-search"></i></button>
        </span>
      </div>
    </div>
  </div>

  <div data-block="table">
    <table class="table table-striped table-bordered">
      <thead>
        <tr bst-table-head>
          <th bst-table-column><span translate>Name</span></th>
          <th bst-table-column><span translate>Actions</span></th>
        </tr>
      </thead>

      <tbody>
        <tr bst-table-row ng-repeat="item in table.rows">
          <td >{{ item.name }}</td>
          <td  class="action-cell">
            <button translate
                    ng-hide="denied('edit_content_views', contentView)"
                    ng-click="selectVersion(item.name)">
              Select a Version
            </button>
          </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/puppet-modules/views/content-view-puppet-module-names.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html
katello-3.3.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/views/content-view-puppet-module-names.html