2022-09-20 06:18:44 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html v-bind:lang="$i18n.locale">
|
|
|
|
<body>
|
|
|
|
<table class="grid">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<!-- Header block -->
|
|
|
|
<report-header v-bind="$props"></report-header>
|
|
|
|
<!-- Block -->
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block">
|
2022-09-21 06:11:04 +00:00
|
|
|
<div class="content">
|
|
|
|
<h1 class="title centered uppercase">{{$t('title')}}</h1>
|
2022-09-20 06:18:44 +00:00
|
|
|
</div>
|
|
|
|
<table class="column-oriented">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('Plate')}}</th>
|
|
|
|
<th>{{$t('Concept')}}</th>
|
|
|
|
<th>{{$t('expirationDate')}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2022-09-21 06:11:04 +00:00
|
|
|
<tbody v-for="vehicleEvent in vehicleEvents">
|
2022-09-20 06:18:44 +00:00
|
|
|
<tr>
|
2022-09-21 06:11:04 +00:00
|
|
|
<td>{{vehicleEvent.numberPlate}}</td>
|
|
|
|
<td>{{vehicleEvent.description}}</td>
|
|
|
|
<td>{{vehicleEvent.finished | date('%d-%m-%Y')}}</td>
|
2022-09-20 06:18:44 +00:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|