Sha256: e3a1ffb0ca2a7384b25c35ebb66fb048784b96cd3df57e7429f2fd0c717c313d
Contents?: true
Size: 1.2 KB
Versions: 29
Compression:
Stored size: 1.2 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>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 detailsTable.rows"> <td bst-table-cell>{{ history.created_at | date:'short' }}</td> <td bst-table-cell>{{ history.version }} </td> <td bst-table-cell>{{ 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
29 entries across 29 versions & 1 rubygems