Mercurial > hg > soundsoftware-site
annotate app/views/admin/info.rhtml @ 855:7294e8db2515 bug_162
Close obsolete branch bug_162
author | Chris Cannam |
---|---|
date | Thu, 14 Jul 2011 11:59:19 +0100 |
parents | cbce1fd3b1b7 |
children |
rev | line source |
---|---|
Chris@0 | 1 <h2><%=l(:label_information_plural)%></h2> |
Chris@0 | 2 |
Chris@0 | 3 <p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</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@0 | 14 |
Chris@0 | 15 <% html_title(l(:label_information_plural)) -%> |