Add status to warranty for Customer Battery Search. #227
This commit is contained in:
parent
baf7b51f14
commit
6893211ff0
1 changed files with 10 additions and 0 deletions
|
|
@ -125,6 +125,16 @@
|
||||||
<td>End of Warranty</td>
|
<td>End of Warranty</td>
|
||||||
<td>{{ result.getDateExpire|date("d M Y") }}</td>
|
<td>{{ result.getDateExpire|date("d M Y") }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Status</td>
|
||||||
|
<td>
|
||||||
|
{% if result.isActivated == true %}
|
||||||
|
Activated
|
||||||
|
{% else %}
|
||||||
|
Not Activated
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue