Improving query
This commit is contained in:
parent
78dc7baa73
commit
1414c83cc9
3 changed files with 11 additions and 11 deletions
File diff suppressed because one or more lines are too long
|
@ -39,14 +39,13 @@
|
|||
</td>
|
||||
<td>
|
||||
<img :src="'/img/'+task.type+'.svg'" width="16" alt="Type of check" :title="'Type: '+task.type" />
|
||||
{{ task.type }}
|
||||
{{ task.type.toUpperCase() }}
|
||||
</td>
|
||||
<td>
|
||||
<span
|
||||
v-if="task.executed_at"
|
||||
>
|
||||
{{ moment(task.executed_at).fromNow() }}
|
||||
<img src="/img/info.svg" alt="Infos" width="16" :title="'Result: '+task.output" />
|
||||
</span>
|
||||
<span
|
||||
v-else
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
v-model="days"
|
||||
@change="refreshTask"
|
||||
>
|
||||
<option value="3">3 days</option>
|
||||
<option value="7">7 days</option>
|
||||
<option value="15">15 days</option>
|
||||
<option value="30">30 days</option>
|
||||
|
@ -46,11 +47,11 @@
|
|||
<table id="tasks_tbl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="10%">Status</th>
|
||||
<th width="10%">Date</th>
|
||||
<th width="10%">Time</th>
|
||||
<th width="*">Output</th>
|
||||
<th width="10%">Duration</th>
|
||||
<th width="10%">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -58,6 +59,9 @@
|
|||
v-for="h in history"
|
||||
v-bind:key="h.id"
|
||||
>
|
||||
<td :class="statusText(h.status)">
|
||||
<img :src="'/img/'+statusText(h.status)+'.svg'" width="16" alt="Status" />
|
||||
</td>
|
||||
<td>{{ moment(h.created_at).format('YYYY-MM-DD') }}</td>
|
||||
<td>{{ moment(h.created_at).format('HH:mm:ss') }}</td>
|
||||
<td>
|
||||
|
@ -72,9 +76,6 @@
|
|||
<span v-if="h.duration != null">{{ h.duration+'s' }}</span>
|
||||
<span v-else><i>No duration</i></span>
|
||||
</td>
|
||||
<td :class="statusText(h.status)">
|
||||
<img :src="'/img/'+statusText(h.status)+'.svg'" width="16" alt="Status" />
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -132,7 +133,7 @@
|
|||
notifications: null,
|
||||
refresh: null,
|
||||
loader: null,
|
||||
days: 7,
|
||||
days: 3,
|
||||
first_day: null,
|
||||
|
||||
charts: {
|
||||
|
|
Loading…
Add table
Reference in a new issue