Semaphore/public/html/projects/taskModal.jade
Matej Kramny fcc332dffc Fix ws logs, output updates from ws
- raw output option for logs (no time prefix)
- fix ws logging
- status updates from ws
2016-05-17 20:12:54 +01:00

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