##// END OF EJS Templates
Adds environment information display to /admin/info....
Jean-Philippe Lang -
r9420:785825900a37
parent child
Show More
@@ -1,15 +1,19
1 <h2><%=l(:label_information_plural)%></h2>
1 <h2><%=l(:label_information_plural)%></h2>
2
2
3 <p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
3 <p><strong><%= Redmine::Info.versioned_name %></strong></p>
4
4
5 <table class="list">
5 <table class="list">
6 <% @checklist.each do |label, result| %>
6 <% @checklist.each do |label, result| %>
7 <tr class="<%= cycle 'odd', 'even' %>">
7 <tr class="<%= cycle 'odd', 'even' %>">
8 <td><%= l(label) %></td>
8 <td><%= l(label) %></td>
9 <td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
9 <td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
10 :style => "vertical-align:bottom;") %></td>
10 :style => "vertical-align:bottom;") %></td>
11 </tr>
11 </tr>
12 <% end %>
12 <% end %>
13 </table>
13 </table>
14 <br />
15 <div class="box">
16 <pre><%= Redmine::Info.environment %></pre>
17 </div>
14
18
15 <% html_title(l(:label_information_plural)) -%>
19 <% html_title(l(:label_information_plural)) -%>
General Comments 0
You need to be logged in to leave comments. Login now