diff --git a/modules/thob/views/templates/hook/displayCustomization.tpl b/modules/thob/views/templates/hook/displayCustomization.tpl new file mode 100644 index 0000000..fa5eac9 --- /dev/null +++ b/modules/thob/views/templates/hook/displayCustomization.tpl @@ -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>