|
|
|
@ -48,23 +48,23 @@
|
|
|
|
|
|
|
|
|
|
<table style="border-bottom: solid 0px #80a6d2;" width="100%">
|
|
|
|
|
<tr>
|
|
|
|
|
<%= l(:label_user_score) %> :
|
|
|
|
|
<%= link_to l(:label_user_score) , {:controller => 'users', :action => 'score_new_index', :remote => true} %> :
|
|
|
|
|
<%= format("%.2f" , @user.user_score_attr.total_score).to_f %>
|
|
|
|
|
</tr><br>
|
|
|
|
|
<tr>
|
|
|
|
|
<%= l(:label_user_score_of_collaboration) %> :
|
|
|
|
|
<%= link_to l(:label_user_score_of_collaboration), {:controller => 'users',:action => 'topic_new_score_index', :remote => true} %> :
|
|
|
|
|
<%= format("%.2f" , @user.user_score_attr.collaboration.nil? ? 0:@user.user_score_attr.collaboration).to_f %>
|
|
|
|
|
</tr><br>
|
|
|
|
|
<tr>
|
|
|
|
|
<%= l(:label_user_score_of_influence) %> :
|
|
|
|
|
<%= link_to l(:label_user_score_of_influence), {:controller => 'users',:action => 'project_new_score_index', :remote => true} %> :
|
|
|
|
|
<%= format("%.2f" , @user.user_score_attr.influence.nil? ? 0:@user.user_score_attr.influence).to_f %>
|
|
|
|
|
</tr><br>
|
|
|
|
|
<tr>
|
|
|
|
|
<%= l(:label_user_score_of_skill) %> :
|
|
|
|
|
<%= link_to l(:label_user_score_of_skill), {:controller => 'users',:action => 'activity_new_score_index', :remote => true} %> :
|
|
|
|
|
<%= format("%.2f" , @user.user_score_attr.skill.nil? ? 0:@user.user_score_attr.skill).to_f %>
|
|
|
|
|
</tr><br>
|
|
|
|
|
<tr>
|
|
|
|
|
<%= l(:label_user_score_of_active) %> :
|
|
|
|
|
<%= link_to l(:label_user_score_of_active), {:controller => 'users',:action => 'influence_new_score_index', :remote => true} %> :
|
|
|
|
|
<%= format("%.2f" , @user.user_score_attr.active.nil? ? 0:@user.user_score_attr.active).to_f %>
|
|
|
|
|
</tr><br>
|
|
|
|
|
</table>
|
|
|
|
|