143 lines
5.3 KiB
Plaintext
143 lines
5.3 KiB
Plaintext
<!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>
|
||
<!--add by huang-->
|
||
<body class="<%= h body_css_classes %>">
|
||
<div id="wrapper">
|
||
<div id="wrapper2">
|
||
<div id="wrapper3">
|
||
<%= render :partial => 'layouts/base_header'%>
|
||
|
||
<div id="main">
|
||
<!--project page-->
|
||
<div id="sidebar">
|
||
<div class="spaceleft">
|
||
<!--informations-->
|
||
<div class="inf_user_image">
|
||
<table>
|
||
<tr>
|
||
<td><%= link_to image_tag(url_to_avatar(@project), :class => 'avatar') %></td>
|
||
<td align="center">
|
||
<div class="info_font">
|
||
<%= textilizable @project.name %>
|
||
</div>
|
||
<div>
|
||
<% if @project.watched_by?(User.current) %>
|
||
<%= watcher_link(@project, User.current) %>
|
||
<% end %>
|
||
</div></td>
|
||
</tr>
|
||
</table>
|
||
|
||
<!--tags-->
|
||
<div class="tags">
|
||
<!-- added by william -for tag -->
|
||
<div id="tags">
|
||
<%= render :partial => 'layouts/tag', :locals => {:obj => @project,:object_flag => "2"}%>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!--parameter-->
|
||
<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"><%= @project.issues.count %></td>
|
||
<td class="font_index"><%= @project.attachments.count %></td>
|
||
<tr>
|
||
<td align="center" width="80px"><strong> <%= link_to(l(:label_member), project_member_path(@project), :class => 'project_infor_tag') %></strong></td>
|
||
<td align="center" width="80px"><strong> <%= link_to(l(:label_project_defect), project_issues_path(@project), :class => 'project_infor_tag') %></strong></td>
|
||
<td align="center" width="80px"><strong> <%= link_to(l(:label_attachment), project_files_path(@project), :class => 'project_infor_tag') %></strong></td>
|
||
</tr>
|
||
</table>
|
||
<div class="user_underline"></div>
|
||
</div>
|
||
|
||
<!--description-->
|
||
<div class="inf_user_context">
|
||
<div class="font_title_left">
|
||
<%= l(:label_project_overview) %>
|
||
</div>
|
||
<div class="user_underline2"></div>
|
||
<div style="padding-bottom: 8px">
|
||
<div class="font_lighter_sidebar">
|
||
<%= textilizable @project.description %>
|
||
</div>
|
||
<div class="created_on_project">
|
||
<strong style="color: #068d9c"><%= l(:label_create_time) %>:</strong><%= @project.created_on %>
|
||
</div>
|
||
</div>
|
||
<div class="user_underline"></div>
|
||
</div>
|
||
|
||
<!--tool-->
|
||
<div class="tool">
|
||
<div class="font_title_left">
|
||
<%= l(:label_project_tool)%>
|
||
</div>
|
||
<div class="user_underline2"></div>
|
||
<table class="font_tool">
|
||
<tr>
|
||
<td align="left" width="60px" valign="center"><img src="/images/sidebar/tool_tag2.png" width="15" height="15"/>
|
||
<%= link_to l(:project_module_documents),project_documents_path(@project) %></td>
|
||
<td align="left" width="60px" valign="center"><img src="/images/sidebar/tool_tag2.png" width="15" height="15"/>
|
||
<%= link_to l(:project_module_wiki),project_wiki_path(@project) %></td>
|
||
</tr>
|
||
<tr>
|
||
<td align="left" width="190px" valign="left"><img src="/images/sidebar/tool_tag2.png" width="15" height="15"/>
|
||
<%= link_to l(:project_module_calendar),project_calendar_path(@project) %>
|
||
</td>
|
||
<td align="left" width="190px" valign="left"><img src="/images/sidebar/tool_tag2.png" width="15" height="15"/>
|
||
<%= link_to l(:project_module_gantt) ,project_gantt_path(@project) %>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td align="left" width="190px" valign="left"><img src="/images/sidebar/tool_tag2.png" width="15" height="15"/>
|
||
<%= link_to l(:project_module_boards) ,project_boards_path(@project) %>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="user_underline"></div>
|
||
</div>
|
||
</div>
|
||
<div id="content">
|
||
<div class="tabs_new">
|
||
<%= render_main_menu(@project) %>
|
||
</div>
|
||
<%= yield %>
|
||
<%= call_hook :view_layouts_base_content %>
|
||
<div style="clear:both;"></div>
|
||
<%= render_flash_messages %>
|
||
|
||
</div>
|
||
<%= render :partial => 'layouts/base_footer'%>
|
||
</div>
|
||
|
||
<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>
|