##// END OF EJS Templates
Merged r15494 from trunk to 3.3-stable (#23013)...
Merged r15494 from trunk to 3.3-stable (#23013) Traditional Chinese translation updated by ChunChang Lo. git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15495 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14686:7467c145c03c
r15113:f3ebf3b44748
Show More
info.html.erb
18 lines | 534 B | text/plain | TextLexer
<h2><%=l(:label_information_plural)%></h2>
<p><strong><%= Redmine::Info.versioned_name %></strong></p>
<table class="list">
<% @checklist.each do |label, result| %>
<tr class="<%= cycle 'odd', 'even' %>">
<td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td>
<td class="tick"><span class="icon-only <%= (result ? 'icon-ok' : 'icon-error') %>"></span></td>
</tr>
<% end %>
</table>
<br />
<div class="box">
<pre><%= Redmine::Info.environment %></pre>
</div>
<% html_title(l(:label_information_plural)) -%>