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 %>
|
2013-11-02 14:17:15 +08:00
|
|
|
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', 'nyan', :media => 'all' %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<%= 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>
|
2013-08-04 14:23:12 +08:00
|
|
|
|
<!--add by huang-->
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<body class="<%= h body_css_classes %>">
|
|
|
|
|
<div id="wrapper">
|
|
|
|
|
<div id="wrapper2">
|
2013-11-04 21:38:14 +08:00
|
|
|
|
<div id="wrapper3">
|
|
|
|
|
<%=render :partial => 'layouts/base_header'%>
|
2013-08-06 10:16:51 +08:00
|
|
|
|
<div id="main">
|
2013-11-04 20:18:44 +08:00
|
|
|
|
|
|
|
|
|
<!-- added by bai -->
|
2013-11-04 21:38:14 +08:00
|
|
|
|
<div class="top-content">
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="info_font" style="width: 240px">软件项目托管社区</td>
|
|
|
|
|
<td style="width: 350px"><strong>当前位置: </strong></td>
|
|
|
|
|
<td rowspan="2" width="350px">
|
|
|
|
|
<div class="top-content-search">
|
|
|
|
|
<%= form_tag(:controller => 'projects', :action => "search", :method => :get) do %>
|
|
|
|
|
<%= text_field_tag 'name', params[:name], :size => 30 %>
|
|
|
|
|
<%= hidden_field_tag 'project_type', params[:project_type] %>
|
|
|
|
|
<%= submit_tag l(:label_search), :class => "small", :name => nil %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-left: 8px"><a>forge.trustie.net/courses</a></td>
|
2013-11-05 10:58:23 +08:00
|
|
|
|
<td ><%=link_to l(:label_home),home_path %> > <%=link_to l(:label_project_deposit),:controller => 'projects', :action => 'index' %> > <%=link_to @project, project_path(@project) %></td>
|
2013-11-04 21:38:14 +08:00
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2013-11-04 20:18:44 +08:00
|
|
|
|
</div>
|
2013-11-04 21:38:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-04 20:18:44 +08:00
|
|
|
|
<!-- end -->
|
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<!--project page-->
|
|
|
|
|
<div id="sidebar">
|
|
|
|
|
<div class="spaceleft">
|
2013-08-06 10:16:51 +08:00
|
|
|
|
<!--informations-->
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<div class="inf_user_image">
|
2013-08-19 08:44:01 +08:00
|
|
|
|
<% @project = Project.find_by_id(@project.id)%>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
2013-11-01 15:48:23 +08:00
|
|
|
|
<td><%= image_tag(url_to_avatar(@project), :class => 'avatar2') %></td>
|
2013-08-06 10:16:51 +08:00
|
|
|
|
<td align="center">
|
2013-08-13 00:25:42 +08:00
|
|
|
|
<div class="info_font" style=" word-wrap: break-word; word-break: break-all">
|
2013-09-02 13:07:23 +08:00
|
|
|
|
<%= @project.name %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
</div>
|
2013-08-12 23:06:50 +08:00
|
|
|
|
<div>
|
|
|
|
|
<% unless User.current.member_of? @project %>
|
|
|
|
|
<%= watcher_link(@project, User.current) %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
</div></td>
|
|
|
|
|
</tr>
|
2013-08-12 21:54:59 +08:00
|
|
|
|
</table>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
2013-08-27 09:09:34 +08:00
|
|
|
|
<!--parameter -->
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<div class="user_fans">
|
2013-08-12 21:54:59 +08:00
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<table width="240" border="0">
|
|
|
|
|
<tr align="center" width="80px">
|
2013-08-25 20:19:44 +08:00
|
|
|
|
<% files_count = @project.attachments.count %>
|
|
|
|
|
<% @project.versions.each do |version| %>
|
|
|
|
|
<% files_count += version.attachments.count %>
|
|
|
|
|
<% end %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
|
2013-08-12 21:54:59 +08:00
|
|
|
|
<td class="font_index"><%=link_to "#{@project.members.count}", project_member_path(@project) %></td>
|
2013-08-27 09:09:34 +08:00
|
|
|
|
<td class="font_index"><%=link_to @project.watcher_users.count, :controller=>"projects", :action=>"watcherlist" %></td>
|
2013-08-12 21:54:59 +08:00
|
|
|
|
<td class="font_index"><%=link_to "#{@project.issues.count}", project_issues_path(@project) %></td>
|
2013-09-02 22:02:47 +08:00
|
|
|
|
<!-- <td class="font_index"><%=link_to files_count, project_files_path(@project) %></td> -->
|
2013-08-27 09:09:34 +08:00
|
|
|
|
|
2013-08-12 21:54:59 +08:00
|
|
|
|
<tr class="font_aram">
|
2013-09-02 22:02:47 +08:00
|
|
|
|
<td align="center" width="70px"> <%= l(:label_member) %></td>
|
2013-09-03 09:16:40 +08:00
|
|
|
|
<td align="center" width="100px"><%= l(:label_user_watchered) %></td>
|
2013-09-02 22:02:47 +08:00
|
|
|
|
<td align="center" width="70px"> <%= l(:label_project_issues) %></td>
|
|
|
|
|
<!-- <td align="center" width="58px"><%= l(:label_attachment) %></td> -->
|
2013-08-27 09:09:34 +08:00
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<div class="user_underline"></div>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
|
2013-08-06 10:16:51 +08:00
|
|
|
|
<!--description-->
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<div class="inf_user_context">
|
|
|
|
|
<div class="font_title_left">
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= l(:label_project_overview) %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
2013-08-11 21:09:12 +08:00
|
|
|
|
|
2013-08-06 10:16:51 +08:00
|
|
|
|
<div style="padding-bottom: 8px">
|
|
|
|
|
<div class="font_lighter_sidebar">
|
2013-08-13 11:11:45 +08:00
|
|
|
|
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= textilizable @project.description %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="created_on_project">
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<strong style="color: #15bccf"><%= l(:label_create_time) %>:</strong><%= format_time(@project.created_on) %>
|
2013-08-06 10:16:51 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<div class="user_underline"></div>
|
2013-08-06 10:16:51 +08:00
|
|
|
|
</div>
|
2013-08-15 09:25:31 +08:00
|
|
|
|
<!--tags-->
|
|
|
|
|
|
|
|
|
|
<div class="user_fans">
|
|
|
|
|
<!-- added by william -for tag -->
|
|
|
|
|
<div class="user_tags">
|
|
|
|
|
<div id="tags">
|
|
|
|
|
<%= render :partial => 'tags/tag', :locals => {:obj => @project,:object_flag => "2"}%>
|
|
|
|
|
</div></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2013-08-07 11:29:00 +08:00
|
|
|
|
|
2013-08-06 10:16:51 +08:00
|
|
|
|
<!--tool-->
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<div class="user_underline"></div>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<div class="tool">
|
|
|
|
|
<div class="font_title_left">
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= l(:label_project_tool)%>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
2013-08-11 21:09:12 +08:00
|
|
|
|
|
2013-08-03 22:22:17 +08:00
|
|
|
|
<table class="font_tool">
|
|
|
|
|
<tr>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<td align="left" width="60px" valign="center"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= link_to l(:project_module_documents),project_documents_path(@project) %></td>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<td align="left" width="60px" valign="center"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= link_to l(:project_module_wiki),project_wiki_path(@project) %></td>
|
|
|
|
|
</tr>
|
2013-08-03 22:22:17 +08:00
|
|
|
|
<tr>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<td align="left" width="190px" valign="left"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= link_to l(:project_module_calendar),project_calendar_path(@project) %>
|
|
|
|
|
</td>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<td align="left" width="190px" valign="left"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= link_to l(:project_module_gantt) ,project_gantt_path(@project) %>
|
|
|
|
|
</td>
|
2013-08-03 22:22:17 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<td align="left" width="190px" valign="left"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= link_to l(:project_module_boards) ,project_boards_path(@project) %>
|
|
|
|
|
</td>
|
2013-10-21 08:57:55 +08:00
|
|
|
|
<td align="left" width="190px" valign="left"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
|
|
|
|
<%= link_to l(:label_module_share) ,share_show_path(@project) %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2013-08-17 10:27:38 +08:00
|
|
|
|
<% if @project.identifier == 'trustie' %>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<td align="left" width="190px" valign="left"><%=image_tag("/images/sidebar/tool_tag.png", weight:"15px", height:"15px") %>
|
2013-08-19 20:09:43 +08:00
|
|
|
|
<%= link_to l(:label_project_tool_response) ,project_feedback_path(@project) %>
|
2013-08-16 22:53:28 +08:00
|
|
|
|
</td>
|
2013-10-21 08:57:55 +08:00
|
|
|
|
|
2013-08-17 10:27:38 +08:00
|
|
|
|
<% else %>
|
2013-08-16 22:53:28 +08:00
|
|
|
|
<% end %>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
</tr>
|
2013-08-03 22:22:17 +08:00
|
|
|
|
</table>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<div class="user_underline"></div>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="content">
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<div class="tabs_new">
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<%= render_main_menu(@project) %>
|
|
|
|
|
</div>
|
2013-11-02 14:17:15 +08:00
|
|
|
|
<%= render_flash_messages %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<%= yield %>
|
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
|
<div style="clear:both;"></div>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<%= render :partial => 'layouts/base_footer'%>
|
2013-10-17 10:31:41 +08:00
|
|
|
|
<%= debug(params) if Rails.env.development? %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
|
<span><%= l(:label_loading) %></span>
|
|
|
|
|
</div>
|
2013-08-07 11:29:00 +08:00
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
2013-11-04 20:18:44 +08:00
|
|
|
|
|