2015-11-12 17:00:35 +08:00
|
|
|
|
<% @nav_dispaly_project_label = 1
|
|
|
|
|
@nav_dispaly_forum_label = 1 %>
|
|
|
|
|
<%#@nav_dispaly_project_label = 1 %>
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<title><%= h html_title %></title>
|
|
|
|
|
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
|
|
|
|
<meta name="keywords" content="issue,bug,tracker" />
|
|
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
|
<%= favicon %>
|
|
|
|
|
<%= javascript_heads %>
|
|
|
|
|
<%= heads_for_theme %>
|
|
|
|
|
<%= stylesheet_link_tag 'pleft','prettify','jquery/jquery-ui-1.9.2','header','new_user','repository','org' %>
|
|
|
|
|
<%= javascript_include_tag 'cookie','project', 'header','prettify','select_list_move','org'%>
|
|
|
|
|
|
|
|
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
|
|
|
<!-- page specific tags -->
|
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<!--add by huang-->
|
|
|
|
|
<body onload="prettyPrint();">
|
|
|
|
|
<div class="navContainer">
|
|
|
|
|
<% if User.current.logged? %>
|
|
|
|
|
<%= render :partial => 'layouts/logined_header' %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= render :partial => 'layouts/unlogin_header' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div class="homepageContentContainer">
|
|
|
|
|
<div class="homepageContent">
|
|
|
|
|
<div class="homepageLeft">
|
|
|
|
|
<div class="homepagePortraitContainer">
|
|
|
|
|
<!--<div class="pr_info_logo fl mr10 mb5">-->
|
|
|
|
|
<!--<%#= image_tag(url_to_avatar(@organization), :width=>"60", :height=>"60", :alt=>"组织logo") %>-->
|
|
|
|
|
<!--</div>-->
|
|
|
|
|
<div class="pr_info_logo fl fl mr10 mb5" id="homepage_portrait_image">
|
|
|
|
|
<%= image_tag(url_to_avatar(@organization),width:"60", height: "60", :id=>'nh_user_tx') %>
|
|
|
|
|
<% if User.current.logged?%>
|
|
|
|
|
<% if User.current.id == @organization.creator_id%>
|
|
|
|
|
<div id="edit_org_file_btn" class="none">
|
|
|
|
|
<div class="homepageEditProfile">
|
|
|
|
|
<a href="<%= clear_org_avatar_temp_organization_path(@organization) %>" data-remote="true" class="homepageEditProfileIcon"></a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end%>
|
|
|
|
|
</div>
|
2015-11-14 10:01:30 +08:00
|
|
|
|
<!--<div class="orgName fl mb5 f14">组织id:<%#= @organization.id %></div>-->
|
|
|
|
|
<div class="orgName fl mb5 f14">
|
|
|
|
|
<%= link_to @organization.name, organization_path(@organization.id), :class=>"pr_info_name fl c_dark fb break_word" %>
|
2015-11-13 09:13:57 +08:00
|
|
|
|
<% if @organization.is_public? %>
|
|
|
|
|
<span class="img_private"><%= l(:label_public)%></span>
|
|
|
|
|
<% else %>
|
|
|
|
|
<span class="img_private"><%= l(:label_private)%></span>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-11-14 10:01:30 +08:00
|
|
|
|
<% if User.current.admin_of_org?(@organization) %>
|
|
|
|
|
<a href="<%= setting_organization_path(@organization) %>" class="pr_join_a c_white"><span class="pr_setting"></span>配置</a>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<!--<div style="clear:both;">-->
|
|
|
|
|
<!--<%#= link_to l(:label_org_name)+"#{@organization.name}", organization_path(@organization.id), :class=>"pr_info_name fl c_dark fb break_word" %>-->
|
|
|
|
|
<!--<%# if @organization.is_public? %>-->
|
|
|
|
|
<!--<span class="img_private"><%#= l(:label_public)%></span>-->
|
|
|
|
|
<!--<%# else %>-->
|
|
|
|
|
<!--<span class="img_private"><%#= l(:label_private)%></span>-->
|
|
|
|
|
<!--<%# end %>-->
|
|
|
|
|
<!--</div>-->
|
|
|
|
|
|
2015-11-12 17:00:35 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div class="f12 fontGrey3">
|
2015-11-12 20:57:41 +08:00
|
|
|
|
<%= link_to '文章', organization_org_document_comments_path(@organization) %> (
|
2015-11-12 17:00:35 +08:00
|
|
|
|
<%= link_to OrgDocumentComment.where("organization_id =? and parent_id is null", @organization.id).count, organization_org_document_comments_path(@organization), :class => "linkBlue" %>
|
2015-11-12 20:57:41 +08:00
|
|
|
|
) |
|
2015-11-13 15:55:29 +08:00
|
|
|
|
<%= link_to '成员', members_organization_path(@organization.id) %> (<%= link_to @organization.org_members.count, members_organization_path(@organization.id), :id => 'org_members_count_id', :class => "linkBlue" %>)
|
2015-11-12 17:00:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepageLeftMenuContainer">
|
2015-11-12 20:57:41 +08:00
|
|
|
|
<div class="homepageLeftMenuBlock">
|
|
|
|
|
<%= link_to "动态",organization_path(@organization), :class => "homepageMenuText" %>
|
|
|
|
|
</div>
|
2015-11-27 12:34:02 +08:00
|
|
|
|
<div class="homepageLeftMenuBlock">
|
|
|
|
|
<a href="javascript:void(0);" class="homepageMenuText" onclick="$('#homepageLeftMenuProjects').slideToggle();">项目</a>
|
|
|
|
|
<%=link_to "", join_project_menu_organization_path(@organization),:remote => true, :method => "post", :class => "homepageMenuSetting fr", :title => "关联项目"%>
|
|
|
|
|
<!--<div class="courseMenu" id="projectMenu">-->
|
|
|
|
|
<!--<ul>-->
|
|
|
|
|
<!--<li class="courseMenuIcon" id="projectMenuIcon">-->
|
|
|
|
|
<!--<ul class="topnav_course_menu" id="topnav_project_menu" style="line-height:1;">-->
|
|
|
|
|
<!--<!–<li><a href="javascript:void(0);" class="menuGrey">账号设置</a> </li>–>-->
|
|
|
|
|
<!--<li>-->
|
|
|
|
|
<!--<%#= link_to "关联项目",join_project_menu_organization_path(@organization),:remote => true,:class => "menuGrey",:method => "post"%>-->
|
|
|
|
|
<!--</li>-->
|
|
|
|
|
<!--</ul>-->
|
|
|
|
|
<!--</li>-->
|
|
|
|
|
<!--</ul>-->
|
|
|
|
|
<!--</div>-->
|
2015-11-18 16:05:08 +08:00
|
|
|
|
<!--<a href="javascript:void(0);" class="homepageMenuSetting fr" title="关联您的已有项目"></a>-->
|
|
|
|
|
</div>
|
2015-11-27 11:02:48 +08:00
|
|
|
|
<div class="homepageLeftMenuCourses borderBottomNone" id="homepageLeftMenuProjects">
|
2015-11-14 10:45:49 +08:00
|
|
|
|
<ul >
|
2015-11-27 16:27:23 +08:00
|
|
|
|
<%= render :partial => 'layouts/org_projects',:locals=>{:projects=>@organization.projects.reorder('created_at').uniq.limit(5),:org_id=>@organization.id,:page=>1}%>
|
2015-11-14 10:45:49 +08:00
|
|
|
|
<!--<%#= @organization.org_projects.each do |p|%>-->
|
|
|
|
|
<!--<li class="homepageLeftMenuCoursesLine"><a href="javascript:void(0);" class="coursesLineGrey"><%#= p.name%></a></li>-->
|
|
|
|
|
<!--<%# end %>-->
|
2015-11-13 16:34:00 +08:00
|
|
|
|
<!--<li class="homepageLeftMenuMore"><a href="javascript:void(0);" class="homepageLeftMenuMoreIcon"></a></li>-->
|
2015-11-14 10:45:49 +08:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2015-11-27 12:34:02 +08:00
|
|
|
|
<div class="homepageLeftMenuBlock">
|
|
|
|
|
<a href="javascript:void(0);" class="homepageMenuText" onclick="$('#homepageLeftMenuCourses').slideToggle();">课程</a>
|
|
|
|
|
<%=link_to "", join_course_menu_organization_path(@organization),:remote => true, :method => "post", :class => "homepageMenuSetting fr", :title => "关联课程"%>
|
|
|
|
|
<%#= link_to "关联课程",join_course_menu_organization_path(@organization),:remote => true,:class => "menuGrey",:method => "post"%>
|
|
|
|
|
<!--<div class="courseMenu" id="courseMenu">-->
|
|
|
|
|
<!--<ul>-->
|
|
|
|
|
<!--<li class="courseMenuIcon" id="courseMenuIcon">-->
|
|
|
|
|
<!--<ul class="topnav_course_menu" id="topnav_course_menu" style="line-height:1;">-->
|
|
|
|
|
<!--<!–<li><a href="javascript:void(0);" class="menuGrey">账号设置</a> </li>–>-->
|
|
|
|
|
<!--<li>-->
|
|
|
|
|
<!--<%#= link_to "关联课程",join_course_menu_organization_path(@organization),:remote => true,:class => "menuGrey",:method => "post"%>-->
|
|
|
|
|
<!--</li>-->
|
|
|
|
|
<!--</ul>-->
|
|
|
|
|
<!--</li>-->
|
|
|
|
|
<!--</ul>-->
|
|
|
|
|
<!--</div>-->
|
2015-11-18 16:05:08 +08:00
|
|
|
|
<!--<a href="javascript:void(0);" class="homepageMenuSetting fr" title="关联您的已有项目"></a>-->
|
|
|
|
|
</div>
|
2015-11-27 11:02:48 +08:00
|
|
|
|
<div class="homepageLeftMenuCourses borderBottomNone" id="homepageLeftMenuCourses">
|
2015-11-18 16:05:08 +08:00
|
|
|
|
<ul >
|
2015-11-27 16:27:23 +08:00
|
|
|
|
<%= render :partial => 'layouts/org_courses',:locals=>{:courses=>@organization.courses.reorder('created_at').uniq.limit(5),:org_id=>@organization.id,:page=>1}%>
|
2015-11-18 16:05:08 +08:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2015-11-12 17:00:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepageRight">
|
|
|
|
|
<%= render_flash_messages %>
|
|
|
|
|
<%= yield %>
|
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
|
<div style="clear:both;"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--页面底部-->
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<%= render :partial => 'layouts/footer' %>
|
|
|
|
|
<div class="cl"></div>
|
2015-11-17 17:34:50 +08:00
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
|
|
|
|
|
|
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
|
<span><%= l(:label_loading) %></span>
|
|
|
|
|
</div>
|
2015-11-26 16:29:50 +08:00
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$("#courseMenu").mouseenter(function(){
|
|
|
|
|
$("#topnav_course_menu").show();
|
|
|
|
|
});
|
|
|
|
|
$("#courseMenu").mouseleave(function(){
|
|
|
|
|
$("#topnav_course_menu").hide();
|
|
|
|
|
});
|
2015-11-27 09:50:17 +08:00
|
|
|
|
$("#projectMenu").mouseenter(function(){
|
|
|
|
|
$("#topnav_project_menu").show();
|
|
|
|
|
});
|
|
|
|
|
$("#projectMenu").mouseleave(function(){
|
|
|
|
|
$("#topnav_project_menu").hide();
|
|
|
|
|
});
|
2015-11-26 16:29:50 +08:00
|
|
|
|
</script>
|
2015-11-12 17:00:35 +08:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|