3
如何在content_tag中包裝if-else語句?在content_tag for Rails中包裝if-else語句
def entry_template
content_tag(:div, :class => "item_title") do
"<h3>
if x == 'garage'
#{entry.garage.name}
else
'Not garage'
end
</h3>"
end
end
謝謝!