|
|
|
@ -6,17 +6,17 @@
|
|
|
|
|
<div class="recall" id='word_li_<%=reply.id.to_s%>' onmouseover="$('#<%= ids_r %>').show()" onmouseout="$('#<%= ids_r %>').hide()">
|
|
|
|
|
<div class="recall_head">
|
|
|
|
|
<% if show_name %>
|
|
|
|
|
<%= image_tag url_to_avatar(reply.user),:width => '30',:height => '30' %>
|
|
|
|
|
<%= image_tag url_to_avatar(reply.user.show_name),:width => '30',:height => '30' %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= image_tag url_to_avatar(nil),:width => '30',:height => '30' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="recall_con">
|
|
|
|
|
<% id = 'project_respond_form_'+ reply.id.to_s %>
|
|
|
|
|
<%= link_to reply.user.name, user_path(reply.user) %>
|
|
|
|
|
<%= link_to reply.user.show_name, user_path(reply.user) %>
|
|
|
|
|
<%= l(:label_reply_to)%>
|
|
|
|
|
<% if show_name %>
|
|
|
|
|
<%= link_to parent_jour.user.name, user_path(parent_jour.user) %>
|
|
|
|
|
<%= link_to parent_jour.user.show_name, user_path(parent_jour.user) %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= l(:label_anonymous) %>
|
|
|
|
|
<% end %>
|
|
|
|
|