diff --git a/app/views/users/_show_new_score.html.erb b/app/views/users/_show_new_score.html.erb index 68832544..d22150a8 100644 --- a/app/views/users/_show_new_score.html.erb +++ b/app/views/users/_show_new_score.html.erb @@ -48,23 +48,23 @@ - <%= link_to l(:label_user_score), {:controller => 'users', :action => 'score_new_index', :remote => true} %> : + <%= l(:label_user_score) %> : <%= format("%.2f" , @user.user_score.total_score).to_f %>
- <%= link_to l(:label_user_score_of_collaboration), {:controller => 'users', :action => 'topic_new_score_index', :remote => true} %> : + <%= l(:label_user_score_of_collaboration) %> : <%= format("%.2f" , @user.user_score.collaboration.nil? ? 0:@user.user_score.collaboration).to_f %>
- <%= link_to l(:label_user_score_of_influence), {:controller => 'users', :action => 'project_new_score_index', :remote => true} %> : + <%= l(:label_user_score_of_influence) %> : <%= format("%.2f" , @user.user_score.influence.nil? ? 0:@user.user_score.influence).to_f %>
- <%= link_to l(:label_user_score_of_skill), {:controller => 'users', :action => 'activity_new_score_index', :remote => true} %> : + <%= l(:label_user_score_of_skill) %> : <%= format("%.2f" , @user.user_score.skill.nil? ? 0:@user.user_score.skill).to_f %>
- <%= link_to l(:label_user_score_of_active), {:controller => 'users', :action => 'influence_new_score_index', :remote => true} %> : + <%= l(:label_user_score_of_active) %> : <%= format("%.2f" , @user.user_score.active.nil? ? 0:@user.user_score.active).to_f %>