0
我有以下塊:Haml:有條件的列表項?
#control-panel
%h3
= "Manage"
%ul.left-panel
%li{:class => 'my-profile'}
= link_to 'Profile', edit_user_path(current_user)
%li{:class => 'my-account'}
= link_to 'Account', edit_account_user_path(current_user)
-if @user && current_user.parent?
%li{:class => 'my-blog'}
= link_to 'Blog', manage_user_posts_path(current_user)
的問題是條件上最後一個列表項目,如果...做這樣的渲染封閉</ul>
標籤,然後另一個列表項。我需要的是,如果最後的列表項符合條件,那麼它將成爲無序列表的一部分。
我該怎麼做?