﻿<table id="tblWarrant" class="table table-bordered table-striped table-condensed">
  <thead>
    <tr>
      <td></td>
      <td>Name</td>
    </tr>
  </thead>
  <tbody>
    {{# each .}}
    <tr>
      <td><button class="btn btn-sm btn-secondary" onclick="warrantApp.viewDetail({{NameNumber}});">View Details</button></td>
      <td>{{LastName}}, {{FirstName}} {{MiddleName}}</td>
    </tr>
    {{/each}}
  </tbody>
</table>