remove name column from Host Events modal, resolves #1132

This commit is contained in:
Leigh Johnson
2016-03-29 17:12:30 -04:00
parent d0f3248d79
commit 2ef6f764d2
3 changed files with 4 additions and 3 deletions

View File

@@ -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;
} }

View File

@@ -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

View File

@@ -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>