Display sequence for product alt codes
Might as well, for now..
This commit is contained in:
parent
130f0b4cdc
commit
43eb2f107f
|
@ -150,12 +150,14 @@
|
|||
<div class="grid full hoverable no-border">
|
||||
<table>
|
||||
<thead>
|
||||
<th>Seq</th>
|
||||
<th>Code</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
% for i, code in enumerate(product.codes, 1):
|
||||
% for i, code in enumerate(product._codes, 1):
|
||||
<tr class="${'odd' if i % 2 else 'even'}">
|
||||
<td>${code}</td>
|
||||
<td>${code.ordinal}</td>
|
||||
<td>${code.code}</td>
|
||||
</tr>
|
||||
% endfor
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in a new issue