admin页面增加组织列表
This commit is contained in:
parent
45fe622f26
commit
5f8595d874
|
@ -322,4 +322,11 @@ class AdminController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#组织
|
||||||
|
def organization
|
||||||
|
@organizations = Organization.all
|
||||||
|
respond_to do |format|
|
||||||
|
format.html
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
111
|
|
@ -538,6 +538,7 @@ zh:
|
||||||
label_project: 项目
|
label_project: 项目
|
||||||
label_activity_project: '项目: ' #added by bai
|
label_activity_project: '项目: ' #added by bai
|
||||||
|
|
||||||
|
label_organization_list: 组织列表
|
||||||
label_project_plural: 项目列表
|
label_project_plural: 项目列表
|
||||||
label_first_page_made: 首页定制
|
label_first_page_made: 首页定制
|
||||||
label_project_first_page: 项目托管平台首页
|
label_project_first_page: 项目托管平台首页
|
||||||
|
|
|
@ -646,6 +646,7 @@ RedmineApp::Application.routes.draw do
|
||||||
match 'admin/info', :via => :get
|
match 'admin/info', :via => :get
|
||||||
match 'admin/test_email', :via => :get
|
match 'admin/test_email', :via => :get
|
||||||
match 'admin/default_configuration', :via => :post
|
match 'admin/default_configuration', :via => :post
|
||||||
|
get 'admin/organization'
|
||||||
|
|
||||||
resources :auth_sources do
|
resources :auth_sources do
|
||||||
member do
|
member do
|
||||||
|
|
|
@ -360,6 +360,7 @@ Redmine::MenuManager.map :homework_menu do |menu|
|
||||||
end
|
end
|
||||||
########end
|
########end
|
||||||
Redmine::MenuManager.map :admin_menu do |menu|
|
Redmine::MenuManager.map :admin_menu do |menu|
|
||||||
|
menu.push :organization, {:controller => 'admin', :action => 'organization'}, :caption => :label_organization_list
|
||||||
menu.push :projects, {:controller => 'admin', :action => 'projects'}, :caption => :label_project_plural
|
menu.push :projects, {:controller => 'admin', :action => 'projects'}, :caption => :label_project_plural
|
||||||
menu.push :users, {:controller => 'admin', :action => 'users'}, :caption => :label_user_plural
|
menu.push :users, {:controller => 'admin', :action => 'users'}, :caption => :label_user_plural
|
||||||
menu.push :first_page_made, {:controller => 'admin',:action => 'first_page_made'},:caption => :label_first_page_made
|
menu.push :first_page_made, {:controller => 'admin',:action => 'first_page_made'},:caption => :label_first_page_made
|
||||||
|
|
Loading…
Reference in New Issue