mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-12 17:48:22 +00:00
logs display modifications
This commit is contained in:
parent
37033ca3a6
commit
0d25b960af
2 changed files with 6 additions and 1 deletions
|
@ -81,7 +81,10 @@ function create_log_table(obj_json) {
|
||||||
}
|
}
|
||||||
iconspan.innerHTML = " ";
|
iconspan.innerHTML = " ";
|
||||||
msage.appendChild(iconspan);
|
msage.appendChild(iconspan);
|
||||||
msage.appendChild(document.createTextNode(parsedmess[4]));
|
var message = parsedmess[4].split(" ");
|
||||||
|
message.shift();
|
||||||
|
|
||||||
|
msage.appendChild(document.createTextNode(message.join(" ")));
|
||||||
|
|
||||||
tr.appendChild(time)
|
tr.appendChild(time)
|
||||||
tr.appendChild(chan);
|
tr.appendChild(chan);
|
||||||
|
|
|
@ -112,6 +112,7 @@
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div class="table-responsive", id="logger">
|
<div class="table-responsive", id="logger">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<div class="col-lg-6">
|
||||||
<table class="table table-bordered table-hover table-striped" id="table_log">
|
<table class="table table-bordered table-hover table-striped" id="table_log">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -129,6 +130,7 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
<table>
|
<table>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue