OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/views/admin/info.html.erb

30 lines
1018 B

<%#-- copyright
OpenProject is a project management system.
Copyright (C) 2012-2013 the OpenProject Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 3.
See doc/COPYRIGHT.rdoc for more details.
++#%>
<%= content_tag :h2, I18n.t('label_information_plural') %>
<%= call_hook(:view_admin_info_top) %>
<%= content_tag :h3, I18n.t('label_core_version') %>
<p><strong><%= Redmine::Info.versioned_name %></strong> (<%= @db_adapter_name %>)</p>
<%= content_tag :h3, I18n.t('label_system') %>
<table class="list">
<% @checklist.each do |label, result| %>
<tr class="<%= cycle 'odd', 'even' %>">
<td><%= l(label) %></td>
<td width="30px"><%= image_tag((result ? 'check.png' : 'error.png'), :style => "vertical-align:bottom;", :alt => (result ? l(:general_text_Yes) : l(:general_text_No))) %></td>
</tr>
<% end %>
</table>
<%= call_hook(:view_admin_info_bottom) %>
<% html_title(l(:label_information_plural)) -%>