forked from brooksbingham/theme-elegance
23 lines
597 B
Smarty
23 lines
597 B
Smarty
<table class="w-full striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Particular</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$line_items item="line_item"}
|
|
{if !$line_item["backofficeOnly"]}
|
|
<tr class="even:bg-blue-500/10">
|
|
<td class="py-1 pl-2">
|
|
{$line_item["label"]}
|
|
</td>
|
|
<td class="py-1 pr-2">
|
|
{$line_item["value"]}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|