##// END OF EJS Templates
Slight changes to the files list (#2658, #2806)....
Slight changes to the files list (#2658, #2806). * Adds a link to the version * Moves styles to the stylesheet * Indent the files git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2515 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1278:805864590a49
r2452:7342a00e0a98
Show More
settings.rhtml
24 lines | 880 B | text/html+ruby | RhtmlLexer
<h2><%=l(:label_settings)%></h2>
<% tabs = project_settings_tabs %>
<% selected_tab = params[:tab] ? params[:tab].to_s : tabs.first[:name] %>
<div class="tabs">
<ul>
<% tabs.each do |tab| -%>
<li><%= link_to l(tab[:label]), { :tab => tab[:name] },
:id => "tab-#{tab[:name]}",
:class => (tab[:name] != selected_tab ? nil : 'selected'),
:onclick => "showTab('#{tab[:name]}'); this.blur(); return false;" %></li>
<% end -%>
</ul>
</div>
<% tabs.each do |tab| -%>
<%= content_tag('div', render(:partial => tab[:partial]),
:id => "tab-content-#{tab[:name]}",
:style => (tab[:name] != selected_tab ? 'display:none' : nil),
:class => 'tab-content') %>
<% end -%>
<% html_title(l(:label_settings)) -%>