info.html.erb
15 lines
| 498 B
| text/plain
|
TextLexer
|
r330 | <h2><%=l(:label_information_plural)%></h2> | ||
|
r1137 | <p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p> | ||
|
r356 | |||
<table class="list"> | ||||
|
r3086 | <% @checklist.each do |label, result| %> | ||
|
r5442 | <tr class="<%= cycle 'odd', 'even' %>"> | ||
<td><%= l(label) %></td> | ||||
<td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'), | ||||
:style => "vertical-align:bottom;") %></td> | ||||
</tr> | ||||
|
r3086 | <% end %> | ||
|
r356 | </table> | ||
|
r741 | |||
|
r1019 | <% html_title(l(:label_information_plural)) -%> | ||