You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

info.html.erb 499B

123456789101112131415161718
  1. <h2><%=l(:label_information_plural)%></h2>
  2. <p><strong><%= Redmine::Info.versioned_name %></strong></p>
  3. <table class="list">
  4. <% @checklist.each do |label, result| %>
  5. <tr>
  6. <td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td>
  7. <td class="tick"><span class="icon-only <%= (result ? 'icon-ok' : 'icon-error') %>"></span></td>
  8. </tr>
  9. <% end %>
  10. </table>
  11. <br />
  12. <div class="box">
  13. <pre><%= Redmine::Info.environment %></pre>
  14. </div>
  15. <% html_title(l(:label_information_plural)) -%>