let productQuantityNum = 20; //initialize product quantity variable let soldOutText = "Edition Sold Out" //initialize variable to display "sold out" text when inventory is 0 $w.onReady(function () { //TODO: write your page related code here... $w('#productPage1').getProduct() //get current product .then( (product) => { productQuantityNum = product.quantityInStock; //get quantity in stock for current product if (productQuantityNum > 0) { //if it's greater than 0, Display number remaining let productQuantityString = productQuantityNum.toString(); $w("#quantityRemainingText").text = productQuantityString + " remaining"; } else { $w("#quantityRemainingText").text = soldOutText; //display sold out text } } ) .catch( (error) => { console.log(error); } ); });
top of page

This is the printed pattern for the Collared Blouse with Cone Sleeves.

This blouse has a loose fit, a collar, three button/pearl closures at the front, and slits on both sides. You can add more buttons/pearls or replace them with ties. In this manual we will guide you through how to make the blouse with a three button/pearl closure - if you prefer you can ad more buttons. The CONE sleeve is a classic cone-shaped sleeve.

Sewing Pattern - Puff And Pencil - Collared Blouse With Cone Sleeves

€19.95Price
Only 2 left in stock

    Add Matching Thread

    Product Page: Stores_Product_Widget
    bottom of page