diff --git a/brewman/static/partial/recipe-detail.html b/brewman/static/partial/recipe-detail.html
index 04d9459a..a6940283 100644
--- a/brewman/static/partial/recipe-detail.html
+++ b/brewman/static/partial/recipe-detail.html
@@ -16,12 +16,18 @@
+
+
+
+ Product's Sale Price {{recipe.Product.SalePrice}}, Recipe's Sale Price {{recipe.SalePrice}},
+
+
+ value="{{costPrice | currency}} / {{costPrice * 100 / recipe.SalePrice | number:2}}%"/>
diff --git a/brewman/views/recipe.py b/brewman/views/recipe.py
index 430de463..1ffed8e6 100644
--- a/brewman/views/recipe.py
+++ b/brewman/views/recipe.py
@@ -246,7 +246,8 @@ def recipe_info(id, request):
else:
recipe = DBSession.query(Recipe).filter(Recipe.id == id).one()
info = {'RecipeID': recipe.id,
- 'Product': {'ProductID': recipe.product_id, 'Name': recipe.product.name, 'Units': recipe.product.units},
+ 'Product': {'ProductID': recipe.product_id, 'Name': recipe.product.name, 'Units': recipe.product.units,
+ 'SalePrice': recipe.product.sale_price},
'Quantity': recipe.quantity, 'SalePrice': recipe.sale_price, 'CostPrice': recipe.cost_price,
'ValidFrom': recipe.valid_from.strftime('%d-%b-%Y'), 'ValidTo': recipe.valid_to.strftime('%d-%b-%Y'),
'RecipeItems': []}