39 lines
2.7 KiB
Plaintext
39 lines
2.7 KiB
Plaintext
<% all_replies = BlogComment.where("root_id = #{activity.id}").reorder("created_on desc") %>
|
|
<% count = all_replies.count %>
|
|
<% no_children_comments = get_no_children_comments all_replies %>
|
|
<%= render :partial => 'users/reply_banner', :locals => {:count => count, :activity => activity, :user_activity_id => user_activity_id, :expand_more =>no_children_comments[:three_more]} %>
|
|
|
|
<% if count > 0 %>
|
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
|
<%= render :partial => 'users/message_replies', :locals => {:comments => no_children_comments[:no_children_comments], :user_activity_id => user_activity_id, :type => 'BlogComment', :activity_id =>activity.id}%>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if activity.locked == false && User.current.logged?%>
|
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), user_path(activity.author_id), :alt => "用户头像" %></div>
|
|
<div class="homepagePostReplyInputContainer mb10">
|
|
<% if User.current.logged? %>
|
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
|
<%= form_for('new_form',:url => {:controller => 'blog_comments', :action => 'reply', :user_id=>activity.author_id,:blog_id=>activity.blog_id,:id=>activity.id},:method => "post", :remote => true) do |f|%>
|
|
<input type="hidden" name="quote[quote]" value="">
|
|
<input type="hidden" name="in_user_center" value="true">
|
|
<input type="hidden" name="blog_comment[sticky]" value="0">
|
|
<input type="hidden" name="blog_comment[locked]" value="0">
|
|
<input type="hidden" name="blog_comment[title]" value="RE:<%= activity.title%>">
|
|
<input type="hidden" name="user_activity_id" value="<%=user_activity_id%>">
|
|
<div nhname='toolbar_container_<%= user_activity_id%>'></div>
|
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="blog_comment[content]"></textarea>
|
|
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" onclick="this.style.display='none'" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
|
<div class="cl"></div>
|
|
<p nhname='contentmsg_<%= user_activity_id%>'></p>
|
|
<% end%>
|
|
</div>
|
|
<% else %>
|
|
<%= render :partial => "users/show_unlogged" %>
|
|
<% end %>
|
|
<div class="cl"></div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</div>
|
|
<% end %> |