nodeclub/views/user/top100_user.html
Kenny Zhao c7f4530af7 在topic页面增加用户关注自动判断
还有一些小更新,如更改用户排行榜样式,前20位增加不同显示
2012-03-13 17:21:49 +08:00

21 lines
738 B
HTML

<tr>
<% if(indexInCollection<20) { %>
<td><b><%= indexInCollection+1 %></b></td>
<td>
<% if(user.avatar){ %>
<a href='/user/<%= user.name %>'><img class='user_avatar' src='<%= user.avatar %>' title='<%= user.name %>' /></a>
<% }else{ %>
<a href='/user/<%= user.name %>'><img class='user_avatar' src='<%- config.site_static_host %>/images/user_icon&48.png' title='<%= user.name %>' /></a>
<% } %>
<span class='sp10'></span>
<a href='/user/<%= user.name %>'><%= user.name %></a></td>
<% } else { %>
<td><%= indexInCollection+1 %></td>
<td><a href='/user/<%= user.name %>'><%= user.name %></a></td>
<% } %>
<td><%= user.follower_count %></td>
<td><%= user.topic_count %></td>
<td><%= user.score %></td>
</tr>