Sha256: a2a2756d500d754c2172087613bb25744b7f9722577d46e3a40d1bb7b8faadd3

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

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

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

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

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

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

     <tbody>
       <tr bst-table-row ng-repeat="history in detailsTable.rows">
         <td bst-table-cell>{{ history.created_at | date:'short' }}</td>
         <td bst-table-cell>{{ history.version }} </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

1 entries across 1 versions & 1 rubygems

Version Path
katello-2.2.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-history.html