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