annotate app/views/admin/.svn/text-base/info.rhtml.svn-base @ 749:3f28aebc5fc1 feature_14

started building the project's tag filtering interface.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 08 Nov 2011 17:12:52 +0000
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)) -%>