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>First Name</th>
|
||||
<th>Plate Number</th>
|
||||
<th>Warranty Class</th>
|
||||
<th>Expiry Date</th>
|
||||
<th>Serial</th>
|
||||
<th>Battery</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
@ -200,6 +204,10 @@
|
|||
<td>{{ result.getLastName|default("") }}</td>
|
||||
<td>{{ result.getFirstName|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>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue