|
|
@ -48,4 +48,53 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="cl"></div>
|
|
|
|
<div class="cl"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% count=activity.children.count %>
|
|
|
|
|
|
|
|
<div class="homepagePostReply">
|
|
|
|
|
|
|
|
<%= render :partial => 'users/reply_banner', :locals => {:count => count, :activity => activity, :user_activity_id => user_activity_id} %>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<% comments = activity.children.reorder("created_on desc").limit(3) %>
|
|
|
|
|
|
|
|
<% if count > 0 %>
|
|
|
|
|
|
|
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
|
|
|
|
|
|
|
<%= render :partial => 'users/all_replies', :locals => {:comments => comments}%>
|
|
|
|
|
|
|
|
</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,:homepage=>1},: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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% else %>
|
|
|
|
|
|
|
|
<%= render :partial => "users/show_unlogged" %>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
function expand_reply_input(id) {
|
|
|
|
|
|
|
|
$(id).toggle();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
|
|
|
sd_create_editor_from_data(<%= user_activity_id %>, null, "100%", "<%= activity.class.to_s %>");
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|