2007-03-12 20:59:02 +03:00
|
|
|
<h2><%=l(:label_information_plural)%></h2>
|
|
|
|
|
2007-08-30 02:27:43 +04:00
|
|
|
<p><%=l(:field_version)%>: <strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
|
2007-03-20 23:03:27 +03:00
|
|
|
|
|
|
|
<table class="list">
|
2007-09-16 00:39:40 +04:00
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<tr class="odd"><td>RMagick available</td><td><%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr>
|
2007-03-20 23:03:27 +03:00
|
|
|
</table>
|
2007-09-23 21:19:27 +04:00
|
|
|
|
|
|
|
<% if @plugins.any? %>
|
|
|
|
|
|
|
|
<h3 class="icon22 icon22-plugin">Plugins</h3>
|
|
|
|
<table class="list">
|
|
|
|
<% @plugins.keys.sort.each do |plugin| %>
|
|
|
|
<tr class="<%= cycle('odd', 'even') %>">
|
|
|
|
<td><%=h @plugins[plugin].name %></td>
|
|
|
|
<td><%=h @plugins[plugin].description %></td>
|
|
|
|
<td><%=h @plugins[plugin].author %></td>
|
|
|
|
<td><%=h @plugins[plugin].version %></td>
|
|
|
|
<td><%= link_to('Configure', :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<% end %>
|