_profile_comments.html.erb
696 Bytes
<hr />
<ul id="profile-wall-activities-comments-<%= activity.id %>" class="profile-wall-activities-comments" >
</ul>
<% if activity.comments_count > 0 %>
<div id="profile-wall-activities-comments-more-<%= activity.id %>" class="profile-wall-activities-comments" >
<div class='view-all-comments icon-chat'>
<%= link_to(n_('View comment', "View all %s comments", activity.comments_count) % activity.comments_count, :profile => profile.identifier, :controller => 'profile', :action => 'more_comments', :activity => activity, :comment_page => (1)) %>
</div>
</div>
<% end %>
<%= render :partial => 'profile_comment_form', :locals => { :activity => activity, :tab_action => tab_action } %>