mirror of
https://github.com/ansible/awx.git
synced 2026-06-07 07:56:12 -02:30
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<div id="HostEvent" class="HostEvent modal fade" role="dialog">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<!-- modal body -->
|
|
<div class="modal-body">
|
|
<div class="HostEvent-header">
|
|
<span class="HostEvent-title">HOST EVENT</span>
|
|
<!-- close -->
|
|
<button ui-sref="jobDetail" type="button" class="close">
|
|
<i class="fa fa-times-circle"></i>
|
|
</button>
|
|
</div>
|
|
<div class="HostEvent-nav">
|
|
<!-- view navigation buttons -->
|
|
<button ui-sref="jobDetail.host-event.details" type="button" class="btn btn-sm btn-default" >Details</button>
|
|
<button ui-sref="jobDetail.host-event.json" type="button" class="btn btn-sm btn-default ">JSON</button>
|
|
<button ng-show="stdout" ui-sref="jobDetail.host-event.stdout" type="button" class="btn btn-sm btn-default ">Standard Out</button>
|
|
|
|
</div>
|
|
<div class="HostEvent-body">
|
|
<!-- views -->
|
|
<div ui-view></div>
|
|
</div>
|
|
|
|
<!-- controls -->
|
|
<div class="HostEvent-controls">
|
|
<button ng-show="showPrev()" ng-click="goPrev()"
|
|
class="btn btn-sm btn-default">Prev</button>
|
|
<button ng-show="showNext()"ng-click="goNext()" class="btn btn-sm btn-default">Next</button>
|
|
<button ui-sref="jobDetail" class="btn btn-sm btn-default" ng-show="true" >Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |