Begin work on the most basic item sheet version

This commit is contained in:
Oliver 2026-03-13 01:05:52 -06:00
parent f91c3d2419
commit 2518c7cf05
6 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<header class="sheet-header bordered">
<img
src="{{item.img}}"
data-action="editImage"
data-edit="img"
title="{{item.name}}"
height="48"
width="48"
>
<input
type="text"
name="name"
class="large"
value="{{item.name}}"
placeholder="{{localize "Name"}}"
>
<span aria-hidden="true">x</span>
<input
type="number"
name="system.quantity"
value="{{system.quantity}}"
data-tooltip
aria-label="Quantity"
>
</header>