mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 17:31:14 +00:00
git-svn-id: https://svn.redmine.org/redmine/trunk@23092 e93f8b46-1217-0410-a6f0-8f06a7374b81
23 lines
594 B
Plaintext
23 lines
594 B
Plaintext
<h2><%=l(:label_information_plural)%></h2>
|
|
|
|
<p><strong><%= Redmine::Info.versioned_name %></strong></p>
|
|
|
|
<table class="list">
|
|
<% @checklist.each do |label, result| %>
|
|
<tr>
|
|
<td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td>
|
|
<td class="tick">
|
|
<span class="icon-only icon-<%= result ? "ok" : "error" %>">
|
|
<%= result ? sprite_icon('checked') : sprite_icon('warning') %>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
<br />
|
|
<div class="box autoscroll">
|
|
<pre><%= Redmine::Info.environment %></pre>
|
|
</div>
|
|
|
|
<% html_title(l(:label_information_plural)) -%>
|