info.rhtml
14 lines
| 456 B
| text/html+ruby
|
RhtmlLexer
|
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| %> | ||
<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 %> | ||||
|
r356 | </table> | ||
|
r741 | |||
|
r1019 | <% html_title(l(:label_information_plural)) -%> | ||