Я пытаюсь изменить стиль, используя bootstrap в следующем списке меню учетной записи Redmine.
Я хочу применить раскрывающийся список к «моему аккаунту» и «выйти».
Redmine.rb
Redmine::MenuManager.map :account_menu do |menu|
menu.push :login, :signin_path, :if => Proc.new { !User.current.logged? }
menu.push :register, :register_path, :if => Proc.new { !User.current.logged? &&
Setting.self_registration? }
menu.push :my_account, { :controller => 'my', :action => 'account' }, :if => Proc.new {
User.current.logged? }
menu.push :logout, :signout_path, :html => {:method => 'post'}, :if => Proc.new {
User.current.logged? }
end
base. html .erb
<div id="account">
<%= render_menu :account_menu -%>
</div>
view-source
<div id="account">
<ul>
<li><a class="my-account" href="/my/account">My account</a></li>
<li><a class="logout" rel="nofollow" data-method="post" href="/logout">Sign out</a></li>
</ul>
</div>
Как я могу добавить class = "dropdown-menu" к тегу <ul>
?