12 lines
170 B
Ruby
12 lines
170 B
Ruby
module IngredientsHelper
|
|
|
|
def ndbn_button_class(ingredient)
|
|
if ingredient.ndbn.present?
|
|
'btn btn-success'
|
|
else
|
|
'btn btn-default'
|
|
end
|
|
end
|
|
|
|
end
|