mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
25 lines
914 B
Plaintext
25 lines
914 B
Plaintext
.row
|
|
.col-sm-7
|
|
h3.no-top-margin Project activity
|
|
ul.list-unstyled
|
|
li(ng-repeat="event in events")
|
|
time(ng-bind="event.created | date:'short'")
|
|
span :
|
|
span(ng-bind="event.object_name")
|
|
span(ng-if="event.object_name.length > 0") -
|
|
span {{ event.description }}
|
|
.col-sm-5
|
|
h4.no-top-margin Task history
|
|
ul.list-group
|
|
li.list-group-item(ng-repeat="task in tasks"): a(ng-click="openTask()" href="#")
|
|
i.fa.fa-fw.fa-clock-o.text-warning(ng-if="task.status == 'waiting'")
|
|
i.fa.fa-fw.fa-times.text-danger(ng-if="task.status == 'error'")
|
|
i.fa.fa-fw.fa-times.text-success(ng-if="task.status == 'success'")
|
|
|
|
|
span(ng-if="task.playbook.length == 0") {{ task.tpl_playbook }}
|
|
span(ng-if="task.playbook.length > 0") {{ task.playbook }}
|
|
span.pull-right {{ task.created | date:'short' }}
|
|
br
|
|
i Duration
|
|
span.pull-right {{ task.duration }}
|