 <thead>
	<tr style="width:100%;">
		<th style="text-align:center !important;">#</th>
		<th>Name</th>
		<th style="text-align:center !important;">Rate</th>
		<th style="text-align:center !important;">Qty</th>
		<th style="text-align:center !important;">Amt</th>
		<th style="text-align:center !important;">Del</th>
	</tr>
</thead>
 
 <tbody id="godown_items_tbl_body">
  {{#records}}
	    <tr id="irow_{{seq}}">
		    <td style="text-align:center !important; width:5%">{{seq}}</td>
			<td style="width:28%"><span>{{name}}</span></td>
			<td style="text-align:center; width:8%;">
				<input class="form-control form-control-sm irate iicontrol" id="irate_{{seq}}" value="{{rate}}" seq="{{seq}}" 
					onfocus="this.select();" style="text-align: center !important;"/>
			</td>
			<td style="text-align:center; width:8%;">
				<input class="form-control form-control-sm iqty iicontrol" id="iqty_{{seq}}" value="{{qty}}" seq="{{seq}}" 
					onfocus="this.select();" style="text-align: center !important;"/>
			</td>
			<td style="width:10%;text-align:center;">
                  <span class="col-9 p-0 pt-1" id="namt_{{seq}}" seq="{{seq}}">{{disp_namt}}</span>
            </td>
			<td style="text-align:center; width:5%">
			    <button id="idel_{{seq}}" seq="{{seq}}" class="btn btn-sm btn-outline-danger idel iicontrol" onclick="return handleButtonEntry('click', '', '{{seq}}');">
			   		<i class="fa-solid fa-trash"></i>
			   	</button> 
		    </td>
	    </tr>
  {{/records}}
 </tbody>