socialforge/app/views/layouts/base_projects.html.erb

192 lines
7.5 KiB
Plaintext
Raw Normal View History

2014-01-23 10:08:46 +08:00
<% @nav_dispaly_project_label = 1 %>
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', '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">
2013-11-24 20:45:04 +08:00
<%=render :partial => 'layouts/base_header'%>
2013-08-06 10:16:51 +08:00
<div id="main">
2013-12-24 10:57:59 +08:00
<div class="top-content">
2013-11-04 21:38:14 +08:00
<table>
<tr>
2013-12-24 10:57:59 +08:00
<td class="info_font" style="width: 240px; color: #15bccf">软件项目托管社区</td>
<td style="width: 430px; color: #15bccf"><strong><%= l(:label_user_location) %> : </strong></td>
<td rowspan="2" width="250px">
2013-11-04 21:38:14 +08:00
<div class="top-content-search">
2014-04-24 08:46:10 +08:00
<%= form_tag(projects_search_path, :method => :get) do %>
2013-12-24 10:57:59 +08:00
<%= text_field_tag 'name', params[:name], :size => 20 %>
<%= hidden_field_tag 'project_type', params[:project_type] %>
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
2013-11-04 21:38:14 +08:00
<% end %>
</div>
</td>
</tr>
<tr>
<td style="padding-left: 8px"><%= link_to request.host()+"/projects", :controller => 'projects', :action => 'index', :project_type => 0 %></td>
<td><p class="top-content-list"><%=link_to l(:label_home),home_path %> > <%=link_to l(:label_project_deposit),:controller => 'projects', :action => 'index', :project_type => 0 %> > <%=link_to @project, project_path(@project) %></p></td>
2013-11-04 21:38:14 +08:00
</tr>
</table>
</div>
2013-12-24 10:57:59 +08:00
2013-11-04 21:38:14 +08:00
2013-08-01 10:33:49 +08:00
<div id="sidebar">
<div class="spaceleft">
<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>
<td>
2013-12-24 10:57:59 +08:00
<div class="info-course">
<%= @project.name %>
</div>
2014-01-16 10:34:39 +08:00
<div>
<!-- added by bai 增加项目得分 -->
<% issue_count = @project.issues.count %>
<% issue_journal_count = @project.issue_changes.count %>
<% issue_score = issue_count * 0.2 %>
<% issue_journal_score = issue_journal_count * 0.1 %>
<% finall_issue_score = issue_score + issue_journal_score %>
<% new_count = @project.news.count %>
<% new_score = new_count * 0.1 %>
<% finall_new_score = new_score %>
<% document_count = @project.documents.count %>
<% file_score = document_count * 0.1 %>
<% finall_file_score = file_score %>
<% changeset_count = @project.changesets.count %>
<% code_submit_score = changeset_count * 0.3 %>
<% finall_code_submit_score = code_submit_score %>
<% board_message_count = 0 %>
<% @project.boards.each do |board| %>
<% board_message_count += board.messages_count %>
<% end %>
<% topic_score = board_message_count * 0.1 %>
<% finall_topic_score = topic_score %>
<% finall_project_score = finall_issue_score + finall_new_score + finall_file_score + finall_code_submit_score + topic_score %>
<% if @project.project_type == 0 %>
<%= l(:label_project_grade)%> :
<%= link_to(format("%.2f" , finall_project_score ).to_f, {:controller => 'projects',
:action => 'show_projects_score',
:remote => true,
:id => @project.id
}, :style => "color: #EC6300;")%>
2014-01-16 10:34:39 +08:00
<% end %>
<!-- end -->
</div>
<div style="margin-left: 20px;">
<% if ( !(User.current.member_of? @project) && User.current.login?) %> <!--added by linchun-->
2013-12-24 10:57:59 +08:00
<span class="icon-fav icon"></span><%= watcher_link(@project, User.current) %>
<% end %>
</div>
</td>
</tr>
</table>
</div>
2013-08-01 10:33:49 +08:00
<div class="user_fans">
<table width="240" border="0">
<tr align="center" width="80px">
2013-08-25 20:19:44 +08:00
<% files_count = @project.attachments.count %>
2013-12-24 10:57:59 +08:00
<% @project.versions.each do |version| %>
<% files_count += version.attachments.count %>
2013-08-25 20:19:44 +08:00
<% end %>
<td class="font_index"><%=link_to "#{@project.members.count}", project_member_path(@project) %></td>
<td class="font_index"><%=link_to @project.watcher_users.count, :controller=>"projects", :action=>"watcherlist", :id => @project %></td>
<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-12-24 10:57:59 +08:00
</tr>
<tr class="font_aram">
2013-09-02 22:02:47 +08:00
<td align="center" width="70px"> <%= l(:label_member) %></td>
<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-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-01 10:33:49 +08:00
<div class="inf_user_context">
<div class="font_title_left">
<%= l(:label_project_overview) %>
2013-08-01 10:33:49 +08:00
</div>
2013-12-24 10:57:59 +08:00
2013-08-06 10:16:51 +08:00
<div style="padding-bottom: 8px">
<div class="font_lighter_sidebar">
<%= 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-12-24 10:57:59 +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"}%>
2013-12-24 10:57:59 +08:00
</div>
</div>
2013-12-24 10:57:59 +08:00
</div>
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">
2013-12-24 10:57:59 +08:00
<%= render 'projects/tools_expand' %>
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>
<%= render_flash_messages %>
2013-08-01 10:33:49 +08:00
<%= yield %>
<%= call_hook :view_layouts_base_content %>
<div style="clear:both;"></div>
</div>
<%= render :partial => 'layouts/base_footer'%>
2013-08-01 10:33:49 +08:00
</div>
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>
2013-08-01 10:33:49 +08:00
</div>
</div>
<%= call_hook :view_layouts_base_body_bottom %>
2013-12-24 10:57:59 +08:00
</div>
2013-08-01 10:33:49 +08:00
</body>
</html>