|
|
|
@ -26,7 +26,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<% count=course.journals_for_messages.where('m_parent_id IS NULL').count %>
|
|
|
|
|
<% count = fetch_user_leaveWord_reply(activity).count %>
|
|
|
|
|
<div class="homepagePostReply">
|
|
|
|
|
<div class="topBorder" style="display: <%= count>0 ? 'none': '' %>"></div>
|
|
|
|
|
<div class="homepagePostReplyBanner" style="display: <%= count>0 ? '': 'none' %>">
|
|
|
|
@ -47,7 +47,7 @@
|
|
|
|
|
<% if count > 0 %>
|
|
|
|
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
|
|
|
|
<ul>
|
|
|
|
|
<% course.journals_for_messages.where('m_parent_id IS NULL').reorder("created_on desc").each do |comment| %>
|
|
|
|
|
<% fetch_user_leaveWord_reply(activity).each do |comment| unless fetch_user_leaveWord_reply(activity).nil? %>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(function(){
|
|
|
|
|
showNormalImage('reply_content_<%= comment.id %>');
|
|
|
|
@ -68,43 +68,12 @@
|
|
|
|
|
<%= format_time(comment.created_on) %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
|
|
|
|
<%= comment.notes.html_safe %></div>
|
|
|
|
|
<% fetch_user_leaveWord_reply(comment).each do |reply| unless fetch_user_leaveWord_reply(comment).nil? %>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(function(){
|
|
|
|
|
showNormalImage('reply_to_content_<%= reply.id %>');
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<div class="recall">
|
|
|
|
|
<div class="homepagePostReplyPortrait">
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(reply.user), :width => "33", :height => "33", :class =>"mt8"), user_path(reply.user_id), :alt => "用户头像" %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyjournal">
|
|
|
|
|
<div class="homepagePostReplyPublisher">
|
|
|
|
|
<% if reply.try(:user).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to reply.try(:user), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to reply.try(:user).try(:realname), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= l(:label_reply_to)%>
|
|
|
|
|
<% if comment.try(:user).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to comment.try(:user), user_path(comment.user_id), :class => "newsBlue mr10 f14 ml10" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to comment.try(:user).try(:realname), user_path(comment.user_id), :class => "newsBlue mr10 f14 ml10" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= format_time reply.created_on %>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" style="max-width: 580px;" id="reply_to_content_<%= reply.id %>">
|
|
|
|
|
<%= reply.notes.html_safe %></div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%= comment.notes.html_safe %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
@ -114,7 +83,7 @@
|
|
|
|
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), :alt => "用户头像" %></div>
|
|
|
|
|
<div class="homepagePostReplyInputContainer mb10">
|
|
|
|
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
|
|
|
|
<%= form_for('new_form',:url => {:controller => 'words', :action => 'create_reply', :id => activity.id},:method => "post", :remote => true) do |f|%>
|
|
|
|
|
<%= form_for('new_form',:url => {:controller => 'words', :action => 'create_reply', :id => activity.id}, :method => "post", :remote => true) do |f|%>
|
|
|
|
|
<%= hidden_field_tag 'reference_id', params[:reference_id], :value => activity.id %>
|
|
|
|
|
<%= hidden_field_tag 'reference_user_id', params[:reference_user_id], :value => activity.user.id %>
|
|
|
|
|
<%= hidden_field_tag 'reference_message_id', params[:reference_message_id], :value => activity.id %>
|
|
|
|
@ -132,4 +101,5 @@
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|