Sha256: 641996d08737c9bbf6e2dc858b211d4c899a7cf712e99fde03801b975c76c24c
Contents?: true
Size: 1.2 KB
Versions: 173
Compression:
Stored size: 1.2 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><short-date-time date="task.started_at" /></td> </tr> </tbody> </table> </div> </section>
Version data entries
173 entries across 173 versions & 1 rubygems