2013-08-01 10:33:49 +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 %>
|
|
|
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', :media => 'all' %>
|
|
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
|
|
<%= javascript_heads %>
|
|
|
|
<%= heads_for_theme %>
|
|
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
|
|
<!-- page specific tags -->
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
</head>
|
|
|
|
<body class="<%= h body_css_classes %>">
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="wrapper2">
|
|
|
|
<div id="wrapper3">
|
|
|
|
|
|
|
|
<%=render :partial => 'layouts/base_header'%>
|
|
|
|
|
|
|
|
<div id="main" class="">
|
|
|
|
<!--project page-->
|
|
|
|
<div id="sidebar">
|
|
|
|
<div class="spaceleft">
|
|
|
|
<!--信息-->
|
|
|
|
<div class="inf_user_image">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td align="left" valign="middle" width="100"><%= link_to image_tag(avatar_image(@project), :class => 'avatar2'), :class => "avatar" %></td>
|
|
|
|
<td>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td class="info_font"><%= textilizable @project.name %></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<!--标签-->
|
|
|
|
<div class="tags">
|
|
|
|
<!-- added by william -for tag -->
|
|
|
|
<div id="tags">
|
|
|
|
<%= tag('img', {:src => "../images/user.png"}, false, false) %>
|
|
|
|
<%= render :partial => 'layouts/tag', :locals => {:obj => @project,:object_flag => "2"}%>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!--指数-->
|
|
|
|
<div class="user_fans">
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
<table width="240" border="0">
|
|
|
|
<tr align="center" width="80px">
|
|
|
|
|
|
|
|
<td class="font_index"><%= @project.members.count %></td>
|
|
|
|
<td class="font_index"><%= session[:project_focus_num] %></td>
|
|
|
|
<td class="font_index"><%= session[:project_investor_num] %></td>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td align="center" width="80px"><strong><%= link_to('成员 ', {:controller => 'projects', :action => 'member'}, :class => 'project_infor_tag') %></strong></td>
|
|
|
|
<td align="center" width="80px"><strong><%= link_to('关注 ', {:controller => 'projects', :action => 'focus'}, :class => 'project_infor_tag') %></strong></td>
|
|
|
|
<td align="center" width="80px"><strong><%= link_to('投资者 ',{:controller => 'projects', :action =>'investor'},:class => 'project_infor_tag') %></strong></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
</div>
|
|
|
|
<!--描述-->
|
|
|
|
<div class="inf_user_context">
|
|
|
|
<div class="font_title_left">
|
|
|
|
概述
|
|
|
|
</div>
|
|
|
|
<div >
|
|
|
|
<%= textilizable @project.description %>
|
|
|
|
</div>
|
|
|
|
<div style="padding-bottom: 5px">
|
|
|
|
<strong>创建时间:</strong><%= @project.created_on %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!--项目推荐-->
|
|
|
|
<div class="tool">
|
|
|
|
<div class="font_title_left">
|
|
|
|
工具
|
|
|
|
</div>
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<%= link_to l(:project_module_documents),project_documents_path(@project) %>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<%= link_to l(:project_module_wiki),project_wiki_path(@project) %>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<%= link_to l(:project_module_calendar),project_calendar_path(@project) %>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<%= link_to l(:project_module_gantt) ,project_gantt_path(@project) %>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
<div class="tabs">
|
|
|
|
<%= render_main_menu(@project) %>
|
|
|
|
</div>
|
|
|
|
<%= yield %>
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
<div style="clear:both;"></div>
|
|
|
|
<%= render_flash_messages %>
|
2013-08-01 20:10:56 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
</div>
|
2013-08-01 20:10:56 +08:00
|
|
|
<%=render :partial => 'layouts/base_footer'%>
|
2013-08-01 10:33:49 +08:00
|
|
|
</div>
|
2013-08-01 20:10:56 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
<span><%= l(:label_loading) %></span>
|
|
|
|
</div>
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
|
|
</body>
|
|
|
|
</html>
|