I have a trouble to show an result of boolean value in a view
I want to show enable and disable but show true or false
my code in index.html.slim
th Active?
td = plan.enable
my code in show.html.slim
p
strong Active ?:
= @plan.enable
How i can solve this?