1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-25 01:41:14 +00:00
redmine/app/views/admin/info.html.erb
Marius Balteanu dfc5b2a13b Replaces various icons with SVG icons (#23980).
git-svn-id: https://svn.redmine.org/redmine/trunk@23039 e93f8b46-1217-0410-a6f0-8f06a7374b81
2024-09-08 17:23:06 +00:00

19 lines
544 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"><%= result ? sprite_icon('checked', css_class: "icon-ok") : sprite_icon('error', css_class: "icon-error") %></td>
</tr>
<% end %>
</table>
<br />
<div class="box autoscroll">
<pre><%= Redmine::Info.environment %></pre>
</div>
<% html_title(l(:label_information_plural)) -%>