annotate app/views/admin/.svn/text-base/info.rhtml.svn-base @ 441:cbce1fd3b1b7 redmine-1.2

Update to Redmine 1.2-stable branch (Redmine SVN rev 6000)
author Chris Cannam
date Mon, 06 Jun 2011 14:24:13 +0100
parents 513646585e45
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)) -%>