diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-20 20:03:27 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-20 20:03:27 +0000 |
commit | f3f75f557a34a4b6183aa0cdf8b95f4ce5864850 (patch) | |
tree | 68c58315f0cb94bb5070b9a0028ed3dc7174ffd9 /app/views/admin/info.rhtml | |
parent | 8bf5759d26946f8641ba35d827b2e74616a88bbf (diff) | |
download | redmine-f3f75f557a34a4b6183aa0cdf8b95f4ce5864850.tar.gz redmine-f3f75f557a34a4b6183aa0cdf8b95f4ce5864850.zip |
added some diagnostic information on admin/info
git-svn-id: http://redmine.rubyforge.org/svn/trunk@359 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin/info.rhtml')
-rw-r--r-- | app/views/admin/info.rhtml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index 2ea692c79..0107fe915 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -1,3 +1,8 @@ <h2><%=l(:label_information_plural)%></h2> -<p><%=l(:field_version)%>: <strong>redMine <%= Redmine::VERSION %></strong> (<%= @db_adapter_name %>)</p>
\ No newline at end of file +<p><%=l(:field_version)%>: <strong>redMine <%= Redmine::VERSION %></strong> (<%= @db_adapter_name %>)</p> + +<table class="list"> +<tr class="odd"><td>File repository writable</td><td><%= image_tag (@file_repository_writable ? 'true' : 'false'), :style => "vertical-align:bottom;" %></td></tr> +<tr class="even"><td>Default administrator account changed</td><td><%= image_tag (@default_admin_changed ? 'true' : 'false'), :style => "vertical-align:bottom;" %></td></tr> +</table> |