forked from brooksbingham/theme-elegance
refactor: override thob modules template
parent
8e2c81f267
commit
d970b53502
|
@ -0,0 +1,20 @@
|
||||||
|
<table class="w-full striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Particular</th>
|
||||||
|
<th>Value</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{foreach from=$line_items item="line_item"}
|
||||||
|
<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>
|
||||||
|
{/foreach}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
Loading…
Reference in New Issue