Remove legacy grid for alt codes in product view

whoops missed this in jquery purge
This commit is contained in:
Lance Edgar 2023-02-10 21:23:57 -06:00
parent e879102768
commit 10162b378a

View file

@ -109,22 +109,6 @@
<%def name="lookup_codes_grid()">
${lookup_codes['grid'].render_buefy_table_element(data_prop='lookupCodesData')|n}
<div class="grid full no-border">
<table>
<thead>
<th>Seq</th>
<th>Code</th>
</thead>
<tbody>
% for code in instance._codes:
<tr>
<td>${code.ordinal}</td>
<td>${code.code}</td>
</tr>
% endfor
</tbody>
</table>
</div>
</%def>
<%def name="lookup_codes_panel()">