diff --git a/src/templates/actor/partials/items.hbs b/src/templates/actor/partials/items.hbs
index 7fb3c5e..ffa4ef1 100644
--- a/src/templates/actor/partials/items.hbs
+++ b/src/templates/actor/partials/items.hbs
@@ -1,5 +1,4 @@
{{!-- TODO: hover shows complete name of abbreviations --}}
-{{!-- TODO: try to use alias for the item type via HBS with and lookup --}}
{{!-- TODO: Where possible use icons with complete names as hovers instead of long names --}}
{{!-- Tab with overview and quick-actions on owned items --}}
@@ -163,4 +162,50 @@
{{/with}}
{{/each}}
+
+ {{!-- TRINKET --}}
+
{{localize "DS4.ItemTypeTrinket"}}
{{!-- SPECIFIC --}}
+
+
+ {{#each itemsByType.trinket as |item id|}} {{!-- SPECIFIC --}}
+ {{#with item.data.data as |itemData|}}
+ -
+
+ {{!-- equipped? --}}
+ {{#if itemData.equipped}}
+ {{else}}
+ {{/if}} {{!--SPECIFIC --}}
+ {{!-- image --}}
+
+

+
+ {{!-- amount --}}
+
{{itemData.quantity}}
+
+ {{!-- name --}}
+ {{item.name}}
+ {{!-- description --}}
+ {{{itemData.description}}}
+ {{!-- edit & delete buttons --}}
+
+
+ {{/with}}
+ {{/each}}
+
\ No newline at end of file