[enh] display app random day

This commit is contained in:
Laurent Peuch 2018-11-03 17:46:41 +01:00
parent a2549c3dd2
commit 7ac6754111

View file

@ -13,6 +13,7 @@
<th>Started time</th>
<th>End time</th>
<th>Commit</th>
<th>Day</th>
</thead>
<tr v-for="(app, index) in apps" :id="app.id" v-bind:class="[app.job_state + 'Job']">
<td>{{app.name}} <small>{{app.app_list}}</small> <span class="tag">{{app.state}}</span> <a target="_blank" v-bind:href="app.url"></a></td>
@ -21,6 +22,7 @@
<td>{{timestampToDate(app.started_time)}}</td>
<td>{{timestampToDate(app.end_time)}}</td>
<td><a target="_blank" v-bind:href="app.url + '/commit/' + app.revision">{{app.revision.slice(0, 7)}}</a></td>
<td class="randomJobDay" title="random day on which a job is scheduled for this app">{{app.random_job_day}}</td>
</tr>
</table>
</div>