Sha256: 276a48e799155c58662d0ed3db2c1a39a2ec6611653685eed34f9b9442b47415
Contents?: true
Size: 1.19 KB
Versions: 45
Compression:
Stored size: 1.19 KB
Contents
<section class="nutupane-sub-section"> <div bst-table="tasksTable"> <table ng-class="{'table-mask': tasksTable.working}" class="table table-bordered table-striped"> <thead> <tr bst-table-head> <th bst-table-column="Status" style="width: 20%" translate>Status</th> <th bst-table-column="Event" translate>Event</th> <th bst-table-column="Date" style="width: 10em" translate>Date</th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="task in tasksTable.rows"> <td bst-table-cell> <div ng-class="{ active: (task.state === 'pending' || task.state === 'running') }" class="progress progress-striped"> <span uib-progressbar value="task.progressbar.value" type="{{task.progressbar.type}}"></span> </div> </td> <td bst-table-cell> <a class="active" ng-click="tasksTable.gotoDetails(task.id)"> {{ task.humanized.action }} {{ task.humanized.input | taskInputShort | taskInputCompile }} </a> </td> <td bst-table-cell>{{ task.started_at | date:"short" }}</td> </tr> </tbody> </table> </div> </section>
Version data entries
45 entries across 45 versions & 1 rubygems