Lines 197-203
Link Here
|
197 |
[% IF ( table_loo.header_fields ) %] |
197 |
[% IF ( table_loo.header_fields ) %] |
198 |
<tr> |
198 |
<tr> |
199 |
[% FOREACH header_field IN table_loo.header_fields %] |
199 |
[% FOREACH header_field IN table_loo.header_fields %] |
200 |
<th>[% header_field.field_label %]</th> |
200 |
[% SWITCH header_field.field_label -%] |
|
|
201 |
[% CASE "Label Number" -%] |
202 |
<th>Label number</th> |
203 |
[% CASE "Summary" -%] |
204 |
<th>Summary</th> |
205 |
[% CASE "Item Type" %] |
206 |
<th>Item type</th> |
207 |
[% CASE "Barcode" %] |
208 |
<th>Barcode</th> |
209 |
[% CASE "Select" -%] |
210 |
<th>Select</th> |
211 |
[% CASE %] |
212 |
<th>[% header_field.field_label %]</th> |
213 |
[% END -%] |
201 |
[% END %] |
214 |
[% END %] |
202 |
</tr> |
215 |
</tr> |
203 |
[% ELSE %] |
216 |
[% ELSE %] |
204 |
- |
|
|