• {#if isEditing}
    {:else}
    {item.name} {#if item.quantity} Qty: {item.quantity} {/if} {#if item.is_complete && item.price != null} ${item.price.toFixed(2)} {/if}
    {#if item.is_complete}
    { if (e.key === 'Enter') handleSavePrice(); }} class="w-24 rounded border border-gray-300 px-2 py-1 text-sm shadow-sm focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500" disabled={isSavingPrice} aria-label="Item price" /> {#if isSavingPrice} ... {/if}
    {/if}
    {/if}