annotate app/views/admin/info.html.erb @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents 433d4f72a19b
children 261b3d9a4903
rev   line source
Chris@0 1 <h2><%=l(:label_information_plural)%></h2>
Chris@0 2
Chris@1115 3 <p><strong><%= Redmine::Info.versioned_name %></strong></p>
Chris@0 4
Chris@0 5 <table class="list">
Chris@0 6 <% @checklist.each do |label, result| %>
Chris@441 7 <tr class="<%= cycle 'odd', 'even' %>">
Chris@441 8 <td><%= l(label) %></td>
Chris@441 9 <td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
Chris@441 10 :style => "vertical-align:bottom;") %></td>
Chris@441 11 </tr>
Chris@0 12 <% end %>
Chris@0 13 </table>
Chris@1115 14 <br />
Chris@1115 15 <div class="box">
Chris@1115 16 <pre><%= Redmine::Info.environment %></pre>
Chris@1115 17 </div>
Chris@0 18
Chris@0 19 <% html_title(l(:label_information_plural)) -%>