mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-11 03:33:07 +00:00
31 lines
837 B
Plaintext
31 lines
837 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 class="<%= cycle 'odd', 'even' %>">
|
|
<td><%= l(label) %></td>
|
|
<td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'), :style => "vertical-align:bottom;") %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<h3><%=l(:label_environment)%></h3>
|
|
<table class="list">
|
|
<% @infolist.each do |label, info| %>
|
|
<tr class="<%= cycle 'odd', 'even' %>">
|
|
<td><%= label.is_a?(Symbol) ? l(label) : h(label) %></td>
|
|
<td><%= h(info) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
|
|
<% if @pluginlist.any? %>
|
|
<h3><%= l(:label_plugins) %></h3>
|
|
<%= render :partial => 'admin/plugins', :locals => {:plugins => @pluginlist} %>
|
|
<% end %>
|
|
|
|
<% html_title(l(:label_information_plural)) -%>
|