code clean up app/views/admin/info.rhtml.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5562 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-04-28 12:35:25 +00:00
parent 363d9de8bb
commit c5195c8972
1 changed files with 5 additions and 4 deletions

View File

@ -4,10 +4,11 @@
<table class="list">
<% @checklist.each do |label, result| %>
<tr class="<%= cycle 'odd', 'even' %>">
<td><%= l(label) %></td>
<td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'), :style => "vertical-align:bottom;") %></td>
</tr>
<tr class="<%= cycle 'odd', 'even' %>">
<td><%= l(label) %></td>
<td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
:style => "vertical-align:bottom;") %></td>
</tr>
<% end %>
</table>