Mercurial > hg > soundsoftware-site
annotate app/views/admin/info.html.erb @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | 261b3d9a4903 |
children |
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@1464 | 8 <td class="name"><%= l(label) %></td> |
Chris@1464 | 9 <td class="tick"><%= 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)) -%> |