2016-03-28 10:39:09 +08:00
|
|
|
|
<!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 %>
|
2016-03-28 14:11:40 +08:00
|
|
|
|
<%= stylesheet_link_tag 'org_new_style' %>
|
2016-03-29 16:45:14 +08:00
|
|
|
|
<%= javascript_include_tag 'org' %>
|
2016-03-28 10:39:09 +08:00
|
|
|
|
<%= javascript_include_tag 'attachments' %>
|
|
|
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
|
|
|
<!-- page specific tags -->
|
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
|
<!-- MathJax的配置 -->
|
|
|
|
|
<script type="text/javascript"
|
|
|
|
|
src="/javascripts/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
|
|
|
|
|
</script>
|
|
|
|
|
<!-- 配置 : 在生成的公式图片上去掉Math定义的右键菜单,$$ $$ \( \) \[ \] 中的公式给予显示-->
|
|
|
|
|
<script type="text/x-mathjax-config">
|
|
|
|
|
MathJax.Hub.Config({
|
|
|
|
|
showMathMenu: false,
|
|
|
|
|
showMathMenuMSIE: false,
|
|
|
|
|
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
|
|
|
|
|
});
|
2016-03-28 14:11:40 +08:00
|
|
|
|
</script>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<script>
|
|
|
|
|
jQuery(document).ready(function($){
|
|
|
|
|
// browser window scroll (in pixels) after which the "back to top" link is shown
|
|
|
|
|
var offset = 300,
|
|
|
|
|
//browser window scroll (in pixels) after which the "back to top" link opacity is reduced
|
|
|
|
|
offset_opacity = 1200,
|
|
|
|
|
//duration of the top scrolling animation (in ms)
|
|
|
|
|
scroll_top_duration = 700,
|
|
|
|
|
//grab the "back to top" link
|
|
|
|
|
$back_to_top = $('.cd-top');
|
2016-03-28 14:11:40 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
//hide or show the "back to top" link
|
|
|
|
|
$(window).scroll(function(){
|
|
|
|
|
( $(this).scrollTop() > offset ) ? $back_to_top.addClass('cd-is-visible') : $back_to_top.removeClass('cd-is-visible cd-fade-out');
|
|
|
|
|
if( $(this).scrollTop() > offset_opacity ) {
|
|
|
|
|
$back_to_top.addClass('cd-fade-out');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//smooth scroll to top
|
|
|
|
|
$back_to_top.on('click', function(event){
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
$('body,html').animate({
|
|
|
|
|
scrollTop: 0 ,
|
|
|
|
|
}, scroll_top_duration
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2016-03-28 14:11:40 +08:00
|
|
|
|
|
2016-03-28 10:39:09 +08:00
|
|
|
|
</head>
|
|
|
|
|
<!--add by huang-->
|
|
|
|
|
<body onload="prettyPrint();">
|
2016-03-28 14:11:40 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div class="container">
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<div class="header">
|
|
|
|
|
<div class="header-con">
|
2016-03-31 17:13:40 +08:00
|
|
|
|
<a href="#" class="fl logo"><img src="/images/org_new_style/logo.jpg" alt=""/></a>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<%# 登录 %>
|
|
|
|
|
<%= render :partial => 'organizations/org_logined_header' %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div><!--header end-->
|
2016-03-29 18:25:16 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<div class="nav-box">
|
|
|
|
|
<div class="nav fl">
|
|
|
|
|
<% @subfield_content.each do |field| %>
|
|
|
|
|
<% if is_default_field?(field) %>
|
|
|
|
|
<% case field.name %>
|
2016-03-31 13:07:12 +08:00
|
|
|
|
<% when 'activity' %>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<%= link_to "首页", organization_path(@organization), :class => "fl navact" %>
|
|
|
|
|
<% when 'course' %>
|
|
|
|
|
<a href="#course_<%= field.id %>" class="fl"> 课程动态</a>
|
|
|
|
|
<% when 'project' %>
|
|
|
|
|
<a href="#project_<%= field.id %>" class="fl">项目动态</a>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% if field.field_type == "Post" && field.hide == 0 %>
|
|
|
|
|
<a href="#message_<%= field.id %>" class="fl"><%= field.name %></a>
|
2016-03-31 19:04:31 +08:00
|
|
|
|
<% elsif field.field_type == "Resource" && field.hide == 0 %>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<a href="#resource_<%= field.id %>" class="fl"><%= field.name %></a>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
2016-03-31 13:07:12 +08:00
|
|
|
|
<% if User.current.admin_of_org?(@organization) %>
|
|
|
|
|
<a href="<%= setting_organization_path(@organization) %>" class="fl">配置</a>
|
|
|
|
|
<% end %>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div><!--nav end-->
|
2016-03-29 18:25:16 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<div class="banner">
|
|
|
|
|
<h2><%= @organization.name %></h2>
|
|
|
|
|
</div>
|
2016-03-29 18:25:16 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<div class="cl"></div>
|
2016-03-28 10:39:09 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<!--模块-->
|
|
|
|
|
<% @subfield_content.each do |field| %>
|
|
|
|
|
<% if is_default_field?(field) %>
|
|
|
|
|
<% case field.name %>
|
2016-03-30 19:02:41 +08:00
|
|
|
|
<% when 'course' %>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<div class="box1 bg-grey" style="display:<%= field.hide == 0?'block':'none' %>;">
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% if field.status == 0 %>
|
2016-03-31 19:33:43 +08:00
|
|
|
|
<div class="content ">
|
|
|
|
|
<div class="box-top" id="course_<%= field.id %>"><h2 class="box-title">课程动态</h2></div>
|
|
|
|
|
<% if @course_acts.nil? %>
|
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="course-list">
|
|
|
|
|
<ul class="clearfix">
|
|
|
|
|
<% unless @course_acts.nil? %>
|
|
|
|
|
<%= render :partial => 'organizations/org_new_course_pic', :locals => {:activities => @course_acts.first(3)} %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<%= link_to "More", organization_path(@organization, :list =>1), :class => "more-btn-center mt30" , :target => "_blank" %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div><!--content end-->
|
2016-03-31 15:25:02 +08:00
|
|
|
|
<% else %>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="box-top" id="course_<%= field.id %>"><h2 class="box-title">课程动态</h2></div>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% if @course_acts.nil? %>
|
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="row">
|
2016-03-31 15:25:02 +08:00
|
|
|
|
<%= render :partial => 'organizations/org_new_course_act_list', :locals =>{:activities => @course_acts, :field => field, :organization => @organization} %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<!--row-ziyuan end-->
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
2016-03-31 19:04:31 +08:00
|
|
|
|
<%= link_to "More", organization_path(@organization, :list =>1), :class => "more-btn-center mt30" , :target => "_blank" %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
2016-03-31 15:25:02 +08:00
|
|
|
|
</div><!--row end-->
|
|
|
|
|
<% end %>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</div><!--box1 end-->
|
|
|
|
|
<% when 'project' %>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<div class="box1" style="display:<%= field.hide == 0?'block':'none' %>;">
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% if field.status == 0 %>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<div class="content ">
|
|
|
|
|
<div class="box-top" id="project_<%= field.id %>"><h2 class="box-title">项目动态</h2><p class="box-title-p"></p></div>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% if @project_acts.nil? %>
|
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="course-list">
|
|
|
|
|
<ul class="clearfix">
|
|
|
|
|
<% unless @project_acts.nil? %>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<%= render :partial => 'organizations/org_new_project_pic', :locals => {:activities => @project_acts.first(3)} %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<div class="cl"></div>
|
2016-03-31 19:04:31 +08:00
|
|
|
|
<%= link_to "More", organization_path(@organization, :list =>1), :class => "more-btn-center mt30" , :target => "_blank" %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2016-03-31 15:25:02 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</div><!--content end-->
|
2016-03-31 15:25:02 +08:00
|
|
|
|
<% else %>
|
|
|
|
|
<div class="content">
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<div class="box-top" style="display:<%= field.hide == 0?'block':'none' %>;" id="project_<%= field.id %>"><h2 class="box-title">项目动态</h2><p class="box-title-p"></p></div>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% if @project_acts.nil? %>
|
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<%= render :partial => 'organizations/org_new_project_act_list', :locals =>{:activities => @project_acts, :field => field, :organization => @organization} %>
|
|
|
|
|
<!--row-ziyuan end-->
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
2016-03-31 19:04:31 +08:00
|
|
|
|
<%= link_to "More", organization_path(@organization, :list =>1), :class => "more-btn-center mt30" , :target => "_blank" %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2016-03-31 15:25:02 +08:00
|
|
|
|
</div><!--row end-->
|
|
|
|
|
<% end %>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
</div>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<% if field.field_type == "Post" %> <%# 讨论类型 %>
|
|
|
|
|
<% message_ats = get_message_org(@organization.id, field.id) %>
|
|
|
|
|
<% ids = field.org_document_comments.map{|o| o.id}.join(",") %>
|
|
|
|
|
<div class="box1 bg-grey" style="display:<%= field.hide == 0?'block':'none' %>;" id="org_subfield_<%= field.id %>">
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<% if field.status == 0 %>
|
2016-03-31 15:25:02 +08:00
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="box-top" id="message_<%= field.id %>"><h2 class="box-title"><%= field.name %></h2></div>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<% if message_ats.blank? %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="course-list">
|
|
|
|
|
<ul class="clearfix">
|
|
|
|
|
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<% message_ats.first(3).each do |act| %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<%= render :partial => 'organizations/org_new_forum_pic', :locals => {:activity => act, :field => field, :organization => @organization} %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</ul>
|
|
|
|
|
<%= link_to "More", organization_path(@organization, :org_subfield_id => field.id), :class => "more-btn-center mt30" , :target => "_blank" %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2016-03-28 14:11:40 +08:00
|
|
|
|
|
2016-03-31 15:25:02 +08:00
|
|
|
|
</div><!--content end-->
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="content">
|
2016-03-31 17:13:40 +08:00
|
|
|
|
<div class="box-top" id="message_<%= field.id %>"><h2 class="box-title"><%= field.name %></h2></div>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<% if message_ats.blank? %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<% message_ats.each do |act| %>
|
|
|
|
|
<%= render :partial => 'organizations/org_new_forum_list', :locals => {:activity => act, :field => field, :organization => @organization} %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<!--row-ziyuan end-->
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<%= link_to "More", organization_path(@organization, :org_subfield_id => field.id), :class => "more-btn-center mt30" , :target => "_blank" %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2016-03-31 15:25:02 +08:00
|
|
|
|
</div><!--row end-->
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</div><!--box1 end-->
|
|
|
|
|
<% elsif field.field_type == "Resource" %>
|
|
|
|
|
<% org_attachs = get_attach_org2(field) %>
|
|
|
|
|
<div class="box1" style="display:<%= field.hide == 0?'block':'none' %>;" id="org_subfield_<%= field.id %>">
|
|
|
|
|
<div class="content">
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<div class="box-top" id="resource_<%= field.id %>"><h2 class="box-title"><%= field.name %></h2></div>
|
2016-03-31 17:06:00 +08:00
|
|
|
|
<% if org_attachs.blank? %>
|
2016-03-31 16:19:59 +08:00
|
|
|
|
<p class="nocontent">暂无内容,敬请期待!</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<%= render :partial => 'organizations/org_new_resource', :locals => {:org_attachs => org_attachs} %>
|
|
|
|
|
<!--row-ziyuan end-->
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<%= link_to "More", organization_path(@organization, :org_subfield_id => field.id), :class => "more-btn-center mt30" , :target => "_blank" %>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2016-03-29 13:43:28 +08:00
|
|
|
|
</div><!--row end-->
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div><!--box1 end-->
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
2016-03-29 11:31:58 +08:00
|
|
|
|
|
2016-03-28 10:39:09 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<div class="footer">
|
|
|
|
|
<div class="footer-con">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="<%= about_us_path %>" target="_blank" class="fl">关于我们</a></li>
|
|
|
|
|
<li><a href="<%= agreement_path %>" target="_blank" class="fl"> 服务协议 </a></li>
|
|
|
|
|
<li><a href="http://forge.trustie.net/forums/1/memos/1168" target="_blank" class="fl">帮助中心</a></li>
|
|
|
|
|
<li><a href="<%= forums_path(:reorder_complex=>'desc')%>" target="_blank" class="fl"> 贴吧交流</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<p>Copyright 2007~2016 All Rights Reserved<br>湘ICP备09019772</p>
|
|
|
|
|
</div>
|
2016-03-28 14:11:40 +08:00
|
|
|
|
</div>
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<!--backtop end-->
|
|
|
|
|
<main class="cd-container">
|
|
|
|
|
</main>
|
|
|
|
|
<a href="#0" class="cd-top">Top</a>
|
2016-03-28 14:11:40 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</div><!--container end-->
|
2016-03-28 14:11:40 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<!--页面底部-->
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
2016-03-28 10:39:09 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
|
<span><%= l(:label_loading) %></span>
|
|
|
|
|
</div>
|
2016-03-28 10:39:09 +08:00
|
|
|
|
|
2016-03-30 17:22:23 +08:00
|
|
|
|
</body>
|
2016-03-28 10:39:09 +08:00
|
|
|
|
</html>
|
|
|
|
|
|