1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 17:31:14 +00:00
redmine/app/views/admin/info.html.erb
Go MAEDA b6610f2b6e admin/info page: text cut off in pre tag on mobile (#31311).
Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@18140 e93f8b46-1217-0410-a6f0-8f06a7374b81
2019-05-08 21:59:16 +00:00

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