info.html.erb
18 lines
| 534 B
| text/plain
|
TextLexer
|
r330 | <h2><%=l(:label_information_plural)%></h2> | ||
|
r9420 | <p><strong><%= Redmine::Info.versioned_name %></strong></p> | ||
|
r356 | |||
<table class="list"> | ||||
|
r3086 | <% @checklist.each do |label, result| %> | ||
|
r5442 | <tr class="<%= cycle 'odd', 'even' %>"> | ||
|
r13107 | <td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td> | ||
|
r14686 | <td class="tick"><span class="icon-only <%= (result ? 'icon-ok' : 'icon-error') %>"></span></td> | ||
|
r5442 | </tr> | ||
|
r3086 | <% end %> | ||
|
r356 | </table> | ||
|
r9420 | <br /> | ||
<div class="box"> | ||||
<pre><%= Redmine::Info.environment %></pre> | ||||
</div> | ||||
|
r741 | |||
|
r1019 | <% html_title(l(:label_information_plural)) -%> | ||