2007-03-12 17:59:02 +00:00
|
|
|
<h2><%=l(:label_information_plural)%></h2>
|
|
|
|
|
2008-02-16 10:15:19 +00:00
|
|
|
<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
|
2007-03-20 20:03:27 +00:00
|
|
|
|
|
|
|
<table class="list">
|
2009-12-19 20:33:24 +00:00
|
|
|
<% @checklist.each do |label, result| %>
|
|
|
|
<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>
|
|
|
|
<% end %>
|
2007-03-20 20:03:27 +00:00
|
|
|
</table>
|
2007-09-23 17:19:27 +00:00
|
|
|
|
2008-01-02 22:41:53 +00:00
|
|
|
<% html_title(l(:label_information_plural)) -%>
|