socialforge/app/views/users/_comment_reply.html.erb

8 lines
457 B
Plaintext
Raw Normal View History

2016-05-06 17:36:28 +08:00
<div class="orig_cont clearfix">
<% unless comment.parent.nil? %>
2016-05-17 15:52:24 +08:00
<div>
2017-02-22 10:08:05 +08:00
<%= render :partial => 'users/comment_reply', :locals => {:comment => comment.parent, :type => type, :user_activity_id => user_activity_id, :parent_id => parent_id} %>
2016-05-06 17:36:28 +08:00
</div>
<% end %>
2017-02-22 10:08:05 +08:00
<%= render :partial => 'users/comment_reply_detail', :locals => {:comment => comment, :type => type, :user_activity_id => user_activity_id, :parent_id => parent_id} %>
2016-05-06 17:36:28 +08:00
</div>