mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 04:00:06 -03:30
remove name column from Host Events modal, resolves #1132
This commit is contained in:
@@ -47,6 +47,7 @@
|
|||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
}
|
}
|
||||||
.HostEvents-title{
|
.HostEvents-title{
|
||||||
|
text-transform: uppercase;
|
||||||
color: @default-interface-txt;
|
color: @default-interface-txt;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -107,7 +107,9 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
var init = function(){
|
var init = function(){
|
||||||
|
$scope.hostName = $stateParams.hostName;
|
||||||
// create filter dropdown
|
// create filter dropdown
|
||||||
|
console.log($stateParams)
|
||||||
CreateSelect2({
|
CreateSelect2({
|
||||||
element: '.HostEvents-select',
|
element: '.HostEvents-select',
|
||||||
multiple: false
|
multiple: false
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<div class="HostEvents-header">
|
<div class="HostEvents-header">
|
||||||
<span class="HostEvents-title">HOST EVENTS</span>
|
<span class="HostEvents-title">HOST EVENTS | {{hostName}}</span>
|
||||||
<!-- Close -->
|
<!-- Close -->
|
||||||
<button ui-sref="jobDetail" type="button" class="close">
|
<button ui-sref="jobDetail" type="button" class="close">
|
||||||
<i class="fa fa fa-times-circle"></i>
|
<i class="fa fa fa-times-circle"></i>
|
||||||
@@ -29,7 +29,6 @@
|
|||||||
<table class="table">
|
<table class="table">
|
||||||
<!-- column labels -->
|
<!-- column labels -->
|
||||||
<th ng-hide="results.length == 0" class="HostEvents-table--header">STATUS</th>
|
<th ng-hide="results.length == 0" class="HostEvents-table--header">STATUS</th>
|
||||||
<th ng-hide="results.length == 0" class="HostEvents-table--header">HOST</th>
|
|
||||||
<th ng-hide="results.length == 0" class="HostEvents-table--header">PLAY</th>
|
<th ng-hide="results.length == 0" class="HostEvents-table--header">PLAY</th>
|
||||||
<th ng-hide="results.length == 0" class="HostEvents-table--header">TASK</th>
|
<th ng-hide="results.length == 0" class="HostEvents-table--header">TASK</th>
|
||||||
<!-- result rows -->
|
<!-- result rows -->
|
||||||
@@ -41,7 +40,6 @@
|
|||||||
</a>
|
</a>
|
||||||
{{event.status}}
|
{{event.status}}
|
||||||
</td>
|
</td>
|
||||||
<td class=HostEvents-table--cell>{{event.host_name}}</td>
|
|
||||||
<td class=HostEvents-table--cell>{{event.play}}</td>
|
<td class=HostEvents-table--cell>{{event.play}}</td>
|
||||||
<td class=HostEvents-table--cell>{{event.task}}</td>
|
<td class=HostEvents-table--cell>{{event.task}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user