Add the warranty class, expiry date, serial, battery ID to the warranties table for search. #205
This commit is contained in:
parent
680f27316f
commit
d47158ced7
1 changed files with 8 additions and 0 deletions
|
|
@ -191,6 +191,10 @@
|
||||||
<th>Last Name</th>
|
<th>Last Name</th>
|
||||||
<th>First Name</th>
|
<th>First Name</th>
|
||||||
<th>Plate Number</th>
|
<th>Plate Number</th>
|
||||||
|
<th>Warranty Class</th>
|
||||||
|
<th>Expiry Date</th>
|
||||||
|
<th>Serial</th>
|
||||||
|
<th>Battery</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -200,6 +204,10 @@
|
||||||
<td>{{ result.getLastName|default("") }}</td>
|
<td>{{ result.getLastName|default("") }}</td>
|
||||||
<td>{{ result.getFirstName|default("") }}</td>
|
<td>{{ result.getFirstName|default("") }}</td>
|
||||||
<td>{{ result.getPlateNumber|default("") }}</td>
|
<td>{{ result.getPlateNumber|default("") }}</td>
|
||||||
|
<td>{{ result.getWarrantyClass|default("") }}</td>
|
||||||
|
<td>{{ result.getDateExpire|default("")|date('d M Y') }}</td>
|
||||||
|
<td>{{ result.getSerial|default("") }}</td>
|
||||||
|
<td>{{ result.getSAPBattery.getID|default("") }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue