diff --git a/app/decorators/ingredient_decorator.rb b/app/decorators/ingredient_decorator.rb
new file mode 100644
index 0000000..de2c491
--- /dev/null
+++ b/app/decorators/ingredient_decorator.rb
@@ -0,0 +1,17 @@
+class IngredientDecorator < BaseDecorator
+
+ def ndbn_check
+ if ndbn.present?
+ "".html_safe
+ else
+ ''
+ end
+ end
+
+ def density
+ if wrapped.density.present?
+ value = UnitConversion::parse(wrapped.density)
+ value.convert('oz/cup').change_formatter(UnitConversion::DecimalFormatter.new).pretty_value
+ end
+ end
+end
\ No newline at end of file
diff --git a/app/views/ingredients/index.html.erb b/app/views/ingredients/index.html.erb
index 5d0f8b6..cc34471 100644
--- a/app/views/ingredients/index.html.erb
+++ b/app/views/ingredients/index.html.erb
@@ -16,22 +16,22 @@
Name
- USDA NDBN
+ USDA
KCal per 100g
- Density
+ Density (oz/cup)