diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-28 12:35:25 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-28 12:35:25 +0000 |
commit | c5195c8972cc8174092b2f9560db8b3b8b3f5a4c (patch) | |
tree | f9ab3e4417cbd661c600ece15c02c006cb285578 /app/views/admin | |
parent | 363d9de8bbd007e1adae4b9375b4d9af71732a66 (diff) | |
download | redmine-c5195c8972cc8174092b2f9560db8b3b8b3f5a4c.tar.gz redmine-c5195c8972cc8174092b2f9560db8b3b8b3f5a4c.zip |
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
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/info.rhtml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index eef1a674f..7b6843039 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -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> |