Mercurial > hg > soundsoftware-site
annotate app/views/admin/info.rhtml @ 1452:d6b9fd02bb89 feature_36_js_refactoring
Deprecated develoment branch.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 11 Oct 2013 17:01:24 +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)) -%> |