info.rhtml
27 lines
| 1.4 KiB
| text/html+ruby
|
RhtmlLexer
|
r330 | <h2><%=l(:label_information_plural)%></h2> | ||
|
r1137 | <p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p> | ||
|
r356 | |||
<table class="list"> | ||||
|
r1137 | <tr class="odd"><td><%= l(:text_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><%= l(:text_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><%= l(:text_rmagick_available) %></td><td><%= image_tag (@flags[:rmagick_available] ? 'true.png' : 'false.png'), :style => "vertical-align:bottom;" %></td></tr> | ||||
|
r356 | </table> | ||
|
r741 | |||
<% if @plugins.any? %> | ||||
| ||||
|
r1137 | <h3 class="icon22 icon22-plugin"><%= l(:label_plugins) %></h3> | ||
|
r741 | <table class="list"> | ||
|
r932 | <% @plugins.keys.sort {|x,y| x.to_s <=> y.to_s}.each do |plugin| %> | ||
|
r741 | <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> | ||||
|
r1137 | <td><%= link_to(l(:button_configure), :controller => 'settings', :action => 'plugin', :id => plugin.to_s) if @plugins[plugin].configurable? %></td> | ||
|
r741 | </tr> | ||
<% end %> | ||||
</table> | ||||
<% end %> | ||||
|
r951 | |||
|
r1019 | <% html_title(l(:label_information_plural)) -%> | ||