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

276 lines
12 KiB
Plaintext
Raw Normal View History

<% @nav_dispaly_user_label = show_item_on_navbar(params) %>
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 %>
2014-01-24 10:55:25 +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 %>
2013-08-01 10:33:49 +08:00
<%= 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">
2013-11-04 16:07:31 +08:00
<div id="wrapper3">
<%= render :partial => 'layouts/base_header'%>
2013-08-06 10:16:51 +08:00
<div id="main">
<!--added by huang-->
2013-11-05 12:49:57 +08:00
<div class="top-content">
2013-11-04 16:07:31 +08:00
<table>
<tr>
<td class="info_font" style="width: 238px; color: #15bccf"><%= l(:label_user_home) %></td>
<td style="width: 430px; color: #15bccf"><strong><%= l(:label_user_location) %> : </strong></td>
<td rowspan="2" width="250px">
<div class="top-content-search <%='hidden' if show_search_bar(params) %>">
<%= form_tag(:controller => 'users', :action => 'search', :method => :get) do %>
<%= text_field_tag 'name', params[:name], :size => 20 %>
2013-11-05 10:58:23 +08:00
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
<% end %>
</div>
</td>
2013-11-04 16:07:31 +08:00
</tr>
<tr>
<td style="padding-left: 8px"><%=link_to request.host()+"/users" ,:controller => 'users', :action => 'index' %></td>
2014-03-13 22:06:49 +08:00
<!-- modified by bai --> <td><%=link_to "主页", home_path %> > <%=link_to "软件创客", :controller => 'users', :action => 'index' %> > <span><%=link_to @user.name, user_path %></span></td>
2013-11-04 16:07:31 +08:00
</tr>
</table>
2013-11-04 15:20:22 +08:00
</div>
<!--end-->
<!--user page, add by huang-->
2013-08-01 10:33:49 +08:00
<div id="sidebar">
<div class="main_context">
<div class="spaceleft">
<div class="inf_user_image">
2013-08-01 10:33:49 +08:00
<table>
<tr>
2013-11-04 16:07:31 +08:00
<td align="left" valign="middle" ><%= image_tag(url_to_avatar(@user), :class => 'avatar2') %></td>
2013-08-01 10:33:49 +08:00
<td>
<table>
<tr>
2014-03-13 22:06:49 +08:00
<td class="info_font" align="center" style=" word-wrap: break-word; word-break: break-all"><%= h (@user.name) %> <!-- added by bai -->
<%= image_tag(gender_avatar_uri(@user), weight:"25px", height:"25px") if (@user.user_extensions && (@user.user_extensions.identity != 2) )%></td>
2013-08-01 10:33:49 +08:00
</tr>
<tr>
<td align="center"> <% unless User.current == @user %>
<%= watcher_link(@user, User.current) %>
<% else %>
2014-01-09 10:58:05 +08:00
<%= link_to(l(:label_user_edit), my_account_path(@user)) if User.current %>
<% end %></td>
2013-08-01 10:33:49 +08:00
</tr>
2014-01-09 10:58:05 +08:00
<!-- added by bai 增加个人得分 -->
2014-01-16 10:34:39 +08:00
<% messages_count = @user.messages.count %>
<% messages_score = messages_count * 0.05%>
<% finall_messages_score = messages_score %>
<% journals_count = @user.journals.count %>
<% journals_score = journals_count * 0.1 %>
<% user_changesets_count = @user.changesets.count %>
<% user_changesets_score = user_changesets_count * 0.3 %>
<% finall_user_project_score = journals_score + user_changesets_score %>
<% journals_for_messages_count = @user.journals_messages.count %>
2014-01-16 10:34:39 +08:00
<% activities_count = @user.activities.count %>
<% journals_for_messages_score = journals_for_messages_count * 0.05 %>
<% activities_score = activities_count * 0.2 %>
<% finall_activity_score = journals_for_messages_score + activities_score %>
<% news_count = @user.news.count %>
<% news_score = news_count * 0.1 %>
<% wiki_contents_count = @user.wiki_contents.count %>
<% wiki_contents_score = wiki_contents_count * 0.1 %>
<% comments_count = @user.comments.count %>
<% comments_score = comments_count * 0.1 %>
<% finall_influence_score = news_score + wiki_contents_score + comments_score %>
<% finall_user_score = finall_messages_score + finall_user_project_score + finall_activity_score + finall_influence_score %>
<tr><td class="score">
<%= l(:label_user_grade)%>:
<%= link_to(format("%.2f" , finall_user_score).to_f, {:controller => 'users',
:action => 'show_score',
:remote => true,
:id => @user.id
}, :style => 'color :#E8770D;') %>
2014-01-16 10:34:39 +08:00
</td>
</tr>
2014-01-09 10:58:05 +08:00
<!-- end -->
2013-08-01 10:33:49 +08:00
</table></td>
</tr>
</table>
2013-08-10 16:16:02 +08:00
<div>
2013-11-04 16:07:31 +08:00
<strong class="font_small_watch"><%= link_to l(:label_user_watcher)+"("+User.watched_by(@user.id).count.to_s+")" ,:controller=>"users", :action=>"user_watchlist"%></strong> &nbsp;
2014-01-09 10:58:05 +08:00
<strong class="font_small_watch"><%= link_to l(:label_x_user_fans, :count => User.current.watcher_users(User.current.id).count)+"("+@user.watcher_users.count.to_s+")", :controller=>"users", :action=>"user_fanslist" %></strong>&nbsp;
2013-11-04 16:07:31 +08:00
<strong class="font_small_watch"><%= link_to l(:label_requirement_focus)+"("+Bid.watched_by(@user).where('reward_type = ?', 1).count.to_s+")" ,:controller=>"users", :action=>"watch_bids"%></strong> &nbsp; <!-- added by huang -->
<!-- added by bai 个人签名-->
<% if @user.id == User.current.id %>
<p>
<%= toggle_link l(:label_brief_introduction), 'introduction', {:focus => 'new_form_user_introduction'} %>
</p>
<% end %>
<% unless @user.user_extensions.nil? %>
<p>
<%= @user.user_extensions.brief_introduction %>
</p>
<% end %>
<div id="introduction" style="display: none">
<%= form_for('new_form', :method => :post,
:url => {:controller => 'words', :action => 'add_brief_introdution'}) do |f|%>
<table border="0" width="100%" align="center" >
<tr>
<td><%= f.text_area 'user_introduction', :rows => 3,
:cols => 65,
:placeholder => "#{l(:label_my_brief_introduction)}",
:style => "resize: none;",
:class => 'noline'%></td>
</tr>
</table>
<table border="0" width="200px" align="center">
<tr>
<td align="right"> <%= submit_tag l(:button_submit), :name => nil ,
:class => "bid_btn" %></td>
</tr>
</table>
<% end %>
</div>
<!-- end -->
</div>
2013-08-01 10:33:49 +08:00
</div>
<div class="user_underline"></div>
2013-08-06 10:16:51 +08:00
<!--info-->
2013-08-01 10:33:49 +08:00
<div class="inf_user_context">
<table style="font-family:微软雅黑" width="240">
2013-08-01 10:33:49 +08:00
<tr>
2013-12-26 11:30:31 +08:00
<td style="padding-left: 5px" width="70px"><%= l(:label_user_joinin) %></td><td class="font_lighter_sidebar" style="padding-left: 0px" width="170px"><%= format_time(@user.created_on) %></td>
</tr>
2013-08-01 10:33:49 +08:00
<tr>
2013-12-26 11:30:31 +08:00
<td style="padding-left: 5px"><%= l(:label_user_login) %></td><td class="font_lighter_sidebar" style="padding-left: 0px"><%= format_time(@user.last_login_on) %></td>
2013-08-01 10:33:49 +08:00
</tr>
<tr>
2013-12-26 11:30:31 +08:00
<td valign="top" style="padding-left: 5px;"><%= l(:label_user_mail) %></td><td class="font_lighter_sidebar" style="padding-left: 0px; word-wrap: break-word; word-break: break-all"><%= mail_to(h(@user.mail), nil, :encode => 'javascript') %></td>
2013-08-01 10:33:49 +08:00
</tr>
<!-- added by bai 在个人主页里显示“工作单位”“地区”"教师的职称"-->
2013-12-26 11:30:31 +08:00
<!-- modified by linchun 在个人主页里显示“加入时间”,“最后登录”,“邮件地址”后面添加冒号-->
2013-11-04 16:07:31 +08:00
<% unless @user.user_extensions.nil? %>
<% unless @user.user_extensions.identity == 2 %>
<tr>
2013-12-26 11:30:31 +08:00
<td style="padding-left: 5px" width="70px"><%= l(:field_occupation) %></td><td class="font_lighter_sidebar" style="padding-left: 0px" width="170px"><%= @user.user_extensions.occupation %></td>
2013-11-04 16:07:31 +08:00
</tr>
<% end %>
<tr>
2013-12-26 11:30:31 +08:00
<td style="padding-left: 5px" width="76px"><%= l(:label_location) %>:</td><td class="font_lighter_sidebar" style="padding-left: 0px" width="170px"><%= @user.user_extensions.location %><%= @user.user_extensions.location_city %></td>
2013-11-04 16:07:31 +08:00
</tr>
<tr>
2014-01-24 17:13:51 +08:00
<% if @user.user_extensions.identity == 0 %>
<td style="padding-left: 5px" width="76px">
2013-11-04 16:07:31 +08:00
<%= l(:label_technical_title) %>:</td><td class="font_lighter_sidebar" style="padding-left: 0px" width="170px"><%= @user.user_extensions.technical_title %></td>
<% end %>
</tr>
<% if( (@user.user_extensions.identity == 1) && (is_watching?(@user) ) )%>
2013-11-22 17:21:27 +08:00
<tr>
<td style="padding-left: 8px" width="70px"><%= l(:label_bidding_user_studentcode)%>:</td><td class="font_lighter_sidebar" style="padding-left: 0px" width="170px"><%= @user.user_extensions.student_id %></td>
</tr>
<% end %>
2013-11-04 16:07:31 +08:00
<% else%>
<tr>
<td style="padding-left: 8px" width="70px"><%= l(:field_occupation) %>:</td>
2013-11-04 16:07:31 +08:00
</tr>
<tr>
<td style="padding-left: 8px" width="70px"><%= l(:label_location) %>:</td>
2013-11-04 16:07:31 +08:00
</tr>
<% end %>
2013-09-13 22:47:14 +08:00
<!-- end -->
2013-08-01 10:33:49 +08:00
</table>
2013-08-01 10:33:49 +08:00
</div>
<!--Modified by nie-->
2013-11-04 16:07:31 +08:00
<div class="user_underline"></div>
<div class="user_tags">
<div id="tags">
<%= render :partial => 'tags/tag', :locals => {:obj => @user,:object_flag => "1"}%>
</div>
</div>
<div class="user_underline"></div>
2013-08-01 10:33:49 +08:00
<div class="user_fans">
<div class="font_title_left">
2013-08-10 09:31:48 +08:00
<strong><%= l(:label_user_watcher) %></strong>
<% if show_more_watchers?(@user) %>
2013-11-04 16:07:31 +08:00
<div style="font-size: 11px; display: inline; float: right; margin-top: 5px; margin-right: 20px" >
<%= link_to l(:label_more), :controller => "users", :action => "user_watchlist"%>
</div>
<% end %>
2013-08-01 10:33:49 +08:00
</div>
2013-08-01 10:33:49 +08:00
<div class="left_wf">
<table>
<tr>
<td style="padding-top: 5px"> <%= show_watcher_profile(@user) %> </td>
</tr>
2013-08-01 10:33:49 +08:00
</table>
</div>
</div>
<div class="user_underline"></div>
2013-08-06 10:16:51 +08:00
<!--fans-->
2013-08-01 10:33:49 +08:00
<div class="user_fans">
<div class="font_title_left">
<strong><%= l(:label_x_user_fans, :count => User.current.watcher_users(User.current.id).count) %></strong>
<% if show_more_fans?(@user) %>
2013-11-04 16:07:31 +08:00
<div style="font-size: 11px; display: inline; float: right; margin-top: 5px; margin-right: 20px" >
<%= link_to l(:label_more), :controller => "users", :action => "user_fanslist"%>
</div>
<% end %>
</div>
2013-08-01 10:33:49 +08:00
<div class="left_wf">
<table>
<tr>
<td style="padding-top: 5px"> <%= show_fans_picture(@user) %> </td>
</tr>
2013-08-01 10:33:49 +08:00
</table>
</div>
</div>
<div class="user_underline"></div>
2013-08-01 10:33:49 +08:00
</div>
</div>
</div>
<div id="content" style="padding-top: 0px;">
<div class="tabs_new">
<% if @user.user_extensions.identity == 2 %>
<%= render_menu :user_enterprise_menu %>
<% else %>
<%= render_menu :user_menu %>
<% end %>
</div>
2013-11-04 16:07:31 +08:00
<%= yield %>
<%= call_hook :view_layouts_base_content %>
<div style="clear:both;"></div>
<%= render_flash_messages %>
2013-08-01 20:10:56 +08:00
</div>
2013-11-04 16:07:31 +08:00
<%= render :partial => 'layouts/base_footer'%>
</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>
2013-11-04 16:07:31 +08:00
</div>
<%= call_hook :view_layouts_base_body_bottom %>
2013-08-01 10:33:49 +08:00
</body>
</html>