mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
fcc332dffc
- raw output option for logs (no time prefix) - fix ws logging - status updates from ws
19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
.modal-header
|
|
h4.modal-title Task Log
|
|
.modal-body
|
|
dl.dl-horizontal
|
|
dt Status
|
|
dd {{ task.status }}
|
|
dt Started
|
|
dd {{ task.start | date:'short' }}
|
|
dt Ended
|
|
dd {{ task.end | date:'short' }}
|
|
dt Created
|
|
dd {{ task.created | date:'short' }}
|
|
dt Raw output
|
|
dd: input(type="checkbox" ng-model="raw" title="show logs unbesmirched")
|
|
pre: code {{ output_formatted }}
|
|
|
|
.modal-footer
|
|
button.btn.btn-default.pull-left(ng-click="$dismiss()") Dismiss
|
|
//- button.btn.btn-success(ng-click="restart(task)") Re-Run |