5
Dołącz klasę, jeśli warunek w Haml jest prawdziwy
Jeśli post.published? .post / Post stuff Inaczej .post.gray / Post stuff Zaimplementowałem to z pomocnikiem rails i wydaje się brzydkie. = content_tag :div, :class => "post" + (" gray" unless post.published?).to_s do / Post stuff Drugi wariant: = content_tag :div, :class => "post" + (post.published? ? "" : " gray") …