You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<div class="container-big mb10">
<div class="project_r_h" style="width:970px;">
<h2 class="project_h2 fl">收藏用户</h2>
</div>
<div class="member_content">
<%= error_messages_for 'member' %>
<div class="st_list2" style="width:970px;">
<div class="st_box">
<div class="cl"></div><!--st_box_top end-->
<% @stores.each do |member| %>
<% unless member.user.nil? %>
<div class="st_boxlist">
<a href="javascript:" class="st_img">
<%= member.user.nil? ? '' : (image_tag(url_to_avatar(member.user), :width => 32, :height => 32)) %>
</a>
<span class="fr ml10 c_grey"><%= l(:label_user_for_project_grade) %>: <span class="c_orange"><%= format("%.2f" ,read_user_project_scores(member.user,@project)).to_i %></span></span>
<span class="fl ml10 c_grey"><%= l(:label_username)%></span>
<%= link_to(member.user.name, user_path(member.user),:class => "ml10 c_blue02") %><br/>
</div>
<div class="cl"></div>
<% end %>
<% end%>
<div class="cl"></div>
</div>
</div>
</div>
</div>