To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / admin / info.rhtml @ 441:cbce1fd3b1b7

History | View | Annotate | Download (498 Bytes)

1 0:513646585e45 Chris
<h2><%=l(:label_information_plural)%></h2>
2
3
<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
4
5
<table class="list">
6
<% @checklist.each do |label, result| %>
7 441:cbce1fd3b1b7 Chris
  <tr class="<%= cycle 'odd', 'even' %>">
8
    <td><%= l(label) %></td>
9
    <td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
10
                                    :style => "vertical-align:bottom;") %></td>
11
  </tr>
12 0:513646585e45 Chris
<% end %>
13
</table>
14
15
<% html_title(l(:label_information_plural)) -%>