我想为乳腺癌宣传月(10 月)使用不同的徽标...我还希望使用参数对徽标进行测试,这样我可以确保它在 10 月之前可以正常工作。明明做错了什么!
控制器:
def breast_cancer_logo_month
if params[:breast_cancer_logo_month] || Time.current.month = 10
return true
end
false
end
看法:
<% if breast_cancer_logo_month %>
#breast cancer logo
<% else %>
#standard logo
<% end %>