diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-24 01:31:41 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-24 01:31:41 +0000 |
commit | be5c092931d27c21d84d85e6de97bc845f76c782 (patch) | |
tree | c6b0c031f8cca85626c8cffe118d561cc1c1858c /app/views/admin/index.html.erb | |
parent | 08391b9499c1c797941cc078a1d3f54f0853ee02 (diff) | |
download | redmine-be5c092931d27c21d84d85e6de97bc845f76c782.tar.gz redmine-be5c092931d27c21d84d85e6de97bc845f76c782.zip |
rename .rhtml to .html.erb of app/views/admin/index.rhtml.
:rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6553 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin/index.html.erb')
-rw-r--r-- | app/views/admin/index.html.erb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/admin/index.html.erb b/app/views/admin/index.html.erb new file mode 100644 index 000000000..f7e72313e --- /dev/null +++ b/app/views/admin/index.html.erb @@ -0,0 +1,8 @@ +<h2><%=l(:label_administration)%></h2> + +<div id="admin-index"> + <%= render :partial => 'no_data' if @no_configuration_data %> + <%= render :partial => 'menu' %> +</div> + +<% html_title(l(:label_administration)) -%> |