@@ -1,25 +1,25 | |||
|
1 | 1 | <h2><%=l(:label_information_plural)%></h2> |
|
2 | 2 | |
|
3 | 3 | <p><%=l(:field_version)%>: <strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p> |
|
4 | 4 | |
|
5 | 5 | <table class="list"> |
|
6 | 6 | <tr class="odd"><td>Default administrator account changed</td><td><%= image_tag (@flags[:default_admin_changed] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> |
|
7 | 7 | <tr class="even"><td>File repository writable</td><td><%= image_tag (@flags[:file_repository_writable] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> |
|
8 | 8 | <tr class="odd"><td>RMagick available</td><td><%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> |
|
9 | 9 | </table> |
|
10 | 10 | |
|
11 | 11 | <% if @plugins.any? %> |
|
12 | 12 | |
|
13 | 13 | <h3 class="icon22 icon22-plugin">Plugins</h3> |
|
14 | 14 | <table class="list"> |
|
15 | <% @plugins.keys.sort.each do |plugin| %> | |
|
15 | <% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %> | |
|
16 | 16 | <tr class="<%= cycle('odd', 'even') %>"> |
|
17 | 17 | <td><%=h @plugins[plugin].name %></td> |
|
18 | 18 | <td><%=h @plugins[plugin].description %></td> |
|
19 | 19 | <td><%=h @plugins[plugin].author %></td> |
|
20 | 20 | <td><%=h @plugins[plugin].version %></td> |
|
21 | 21 | <td><%= link_to('Configure', :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %></td> |
|
22 | 22 | </tr> |
|
23 | 23 | <% end %> |
|
24 | 24 | </table> |
|
25 | 25 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now