salix/print/templates/reports/vehicle-event-expired/vehicle-event-expired.html

26 lines
926 B
HTML
Raw Normal View History

2022-11-10 09:38:54 +00:00
<report-body v-bind="$props">
2022-11-10 07:57:42 +00:00
<div class="grid-row">
<div class="grid-block">
<div class="content">
<h1 class="title centered uppercase">{{$t('title')}}</h1>
</div>
<table class="column-oriented">
<thead>
<tr>
<th>{{$t('Plate')}}</th>
<th>{{$t('Concept')}}</th>
<th>{{$t('expirationDate')}}</th>
</tr>
</thead>
<tbody v-for="vehicleEvent in vehicleEvents">
<tr>
<td>{{vehicleEvent.numberPlate}}</td>
<td>{{vehicleEvent.description}}</td>
2023-01-23 12:15:30 +00:00
<td>{{formatDate(vehicleEvent.finished, '%d-%m-%Y')}}</td>
2022-11-10 07:57:42 +00:00
</tr>
</tbody>
</table>
</div>
</div>
2022-11-10 09:38:54 +00:00
</report-body>