impress/app/views/wardrobe/items/badges/_closet.html.haml
Emi Matchu ff7c590790 [WV2] Add ownership and wishlist badges
Show "Own" (green) and "Want" (blue) badges on item cards when a logged-in user has items in their closet lists. Badges appear on both search results and outfit items.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-15 21:03:36 -08:00

7 lines
201 B
Text

- if item.owned?
%abbr.item-badge{data: {item_kind: "own"}, title: "You own this item"}
Own
- if item.wanted?
%abbr.item-badge{data: {item_kind: "want"}, title: "You want this item"}
Want