customers/new に :sidebar セクションがあります。content_for セクションは、ネストされたパーシャルから呼び出されます。テキスト「hello1」は表示されますが、「hello2」は表示されません。
エラーはスローされておらず、トラブルシューティングの方法がわかりません。
何か案は?
**layouts/application.haml**
.container
- unless signed_in?
= render "custom/account_#{current_account.id}" rescue nil
= yield
**customers/new.haml**
= yield :sidebar
**custom/_account_2.haml**
%p hello1
- content_for :sidebar do
%p hello2