Sha256: 1020ae88ff05c39a281e9e105b838dfb077758a87942ef82a98af19f5f3b5f9a

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

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

<header data-block="sub-header">
  <h3 translate>Promotion History</h3>
</header>

<div data-extend-template="layouts/partials/table.html">
  <span data-block="no-rows-message" translate>
     There is currently no history associated with this Content View.
  </span>


  <div data-block="table">
    <table class="table table-striped table-bordered" ng-class="{'table-mask': table.working}">
     <thead>
       <tr bst-table-head>
         <th translate>Date</th>
         <th translate>Version</th>
         <th translate>Description</th>
         <th translate>Action</th>
         <th translate>User</th>
         <th translate>Status</th>
       </tr>
     </thead>

     <tbody>
       <tr bst-table-row ng-repeat="history in table.rows">
         <td bst-table-cell>{{ history.created_at | date:'short' }}</td>
         <td bst-table-cell>{{ history.version }} </td>
         <td bst-table-cell class="preserve-newlines">{{ history.description }}</td>
         <td bst-table-cell>{{ actionText(history) }}</td>
         <td bst-table-cell>{{ history.user }}</td>
         <td bst-table-cell>{{ history.task.result }}</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/histories/views/content-view-history.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
katello-3.3.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html