Sha256: 743a2882341cddd2c84287b8a6898efdf5985e758dbaaf12d8eed5f667625d46

Contents?: true

Size: 1.76 KB

Versions: 1

Compression:

Stored size: 1.76 KB

Contents

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

<ol class="breadcrumb">
  <li class="active">
    <a ui-sref="content-views.details.puppet-modules.list">
      {{ "Module List" | translate }}
    </a>
  </li>
</ol>

<div data-extend-template="layouts/details-nutupane.html">
  <div class="loading-mask loading-mask-panel" ng-show="namesLoading">
    <i class="fa fa-spinner fa-spin"></i>
    {{ "Loading..." | translate }}
  </div>

  <a ui-sref="content-views.details.puppet-modules.list" >
    <i class="fa fa-double-angle-left"></i>
    {{ "Back to Module List" | translate }}
  </a>

  <span data-block="header" translate>Select A New Puppet Module To Add</span>
  <span data-block="messages"></span>
  <div data-block="search">
    <input type="text"
           class="form-control"
           placeholder="{{ 'Filter' | translate }}"
           ng-model="filterTerm"/>
  </div>

  <span data-block="selection-summary"></span>

  <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 detailsTable.rows | filter:filterTerm">
          <td bst-table-cell>{{ item.module_name }}</td>
          <td bst-table-cell class="action-cell">
            <button translate
                    ng-hide="denied('edit_content_views', contentView)"
                    ng-click="selectVersion(item.module_name)">
              Select a Version
            </button>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
</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/content-views/details/puppet-modules/views/content-view-puppet-module-names.html