2007-03-12 17:59:02 +00:00
|
|
|
<h2><%=l(:label_information_plural)%></h2>
|
|
|
|
|
|
2012-05-01 14:49:53 +00:00
|
|
|
<p><strong><%= Redmine::Info.versioned_name %></strong></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| %>
|
2017-01-25 11:44:12 +00:00
|
|
|
<tr>
|
2014-10-22 19:10:12 +00:00
|
|
|
<td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td>
|
2024-09-29 19:19:53 +00:00
|
|
|
<td class="tick">
|
|
|
|
|
<span class="icon-only icon-<%= result ? "ok" : "error" %>">
|
|
|
|
|
<%= result ? sprite_icon('checked') : sprite_icon('warning') %>
|
|
|
|
|
</span>
|
|
|
|
|
</td>
|
2011-04-28 12:35:25 +00:00
|
|
|
</tr>
|
2009-12-19 20:33:24 +00:00
|
|
|
<% end %>
|
2007-03-20 20:03:27 +00:00
|
|
|
</table>
|
2012-05-01 14:49:53 +00:00
|
|
|
<br />
|
2019-05-08 21:59:16 +00:00
|
|
|
<div class="box autoscroll">
|
2012-05-01 14:49:53 +00:00
|
|
|
<pre><%= Redmine::Info.environment %></pre>
|
|
|
|
|
</div>
|
2007-09-23 17:19:27 +00:00
|
|
|
|
2008-01-02 22:41:53 +00:00
|
|
|
<% html_title(l(:label_information_plural)) -%>
|