107 lines
7.5 KiB
Plaintext
107 lines
7.5 KiB
Plaintext
<ul>
|
|
<% comments.each do |comment| %>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
showNormalImage('reply_content_<%= comment.id %>');
|
|
autoUrl('reply_content_<%= comment.id %>');
|
|
});
|
|
</script>
|
|
<li class="homepagePostReplyContainer" nhname="reply_rec">
|
|
<div class="homepagePostReplyPortrait">
|
|
<%= link_to image_tag(url_to_avatar(comment.creator_user), :width => 33, :height => 33, :alt => "用户头像"), user_url_in_org(comment.creator_user.id) %>
|
|
</div>
|
|
<div class="homepagePostReplyDes" onmouseover="$('#delete_reply_<%=activity_id %>_<%=comment.id %>').show();" onmouseout="$('#delete_reply_<%=activity_id %>_<%=comment.id %>').hide();">
|
|
<%= render :partial => 'users/news_contents', :locals => {:comment => comment}%>
|
|
|
|
<% if !comment.content_detail.blank? || comment.class == Journal %>
|
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
|
<% if comment.class == Journal %>
|
|
<% if comment.details.any? %>
|
|
<% details_to_strings(comment.details).each do |string| %>
|
|
<p><%= string %></p>
|
|
<% end %>
|
|
<% end %>
|
|
<P><%= comment.notes.html_safe %></P>
|
|
<% else %>
|
|
<%= comment.content_detail.html_safe %>
|
|
<% end %>
|
|
</div>
|
|
<div class="orig_reply mb10 mt-10">
|
|
<div class="reply">
|
|
<span class="reply-right">
|
|
<span id="reply_praise_count_<%= comment.id %>">
|
|
<%= render :partial => "praise_tread/praise", :locals => {:activity => comment, :user_activity_id => comment.id, :type => "reply"} %>
|
|
</span>
|
|
<% if type == 'HomeworkCommon' %>
|
|
<span style="position: relative" class="fr mr20">
|
|
<%= link_to(
|
|
l(:button_reply),
|
|
{:controller => 'users' ,:action => 'reply_to', :reply_id => comment.id, :type => 'HomeworkCommon', :is_in_course => is_in_course, :user_activity_id => user_activity_id, :course_activity => course_activity},
|
|
:remote => true,
|
|
:method => 'get',
|
|
:title => l(:button_reply)) %>
|
|
<span id="reply_iconup_<%=comment.id %>" class="reply_iconup02" style="display: none"> ︿</span>
|
|
</span>
|
|
<% if User.current.admin? ||is_teacher || comment.user == User.current%>
|
|
<%= link_to('删除', {:controller => 'words', :action => 'destroy', :object_id => comment, :user_id => comment.user,:is_in_course => is_in_course, :user_activity_id => user_activity_id, :course_activity => course_activity},
|
|
:id => "delete_reply_#{activity_id}_#{comment.id}",:remote => true, :confirm => l(:text_are_you_sure), :method => 'delete', :class => "fr mr20 undis", :title => l(:button_delete)) %>
|
|
<% end %>
|
|
<% elsif type == 'News' %>
|
|
<span style="position: relative" class="fr mr20">
|
|
<%= link_to(
|
|
l(:button_reply),
|
|
{:controller => 'users', :action => 'reply_to', :reply_id => comment.id, :type => type, :user_activity_id => user_activity_id, :activity_id => activity_id},
|
|
:remote => true,
|
|
:method => 'get',
|
|
:title => l(:button_reply)) %>
|
|
<span id="reply_iconup_<%= comment.id %>" class="reply_iconup02" style="display: none"> ︿</span>
|
|
</span>
|
|
<% news = News.find(activity_id) %>
|
|
<%= link_to('删除', {:controller => 'comments', :action => 'destroy', :id => activity_id, :comment_id => comment, :user_activity_id => user_activity_id},
|
|
:id => "delete_reply_#{activity_id}_#{comment.id}",:remote => true, :confirm => l(:text_are_you_sure), :method => 'delete', :class => "fr mr20 undis", :title => l(:button_delete)) if (User.current.allowed_to?(:manage_news, news.course) || User.current.allowed_to?(:manage_news, news.project)) %>
|
|
<% elsif type == 'Issue' %>
|
|
<span style="position: relative" class="fr mr20">
|
|
<%= link_to(
|
|
l(:button_reply),
|
|
{:controller => 'users', :action => 'reply_to', :reply_id => comment.id, :type => type, :user_activity_id => user_activity_id, :activity_id => activity_id},
|
|
:remote => true,
|
|
:method => 'get',
|
|
:title => l(:button_reply)) %>
|
|
<span id="reply_iconup_<%= comment.id %>" class="reply_iconup02" style="display: none"> ︿</span>
|
|
</span>
|
|
<%= link_to(
|
|
l(:button_delete),
|
|
{:controller => 'issues',:action => 'delete_journal', :id => activity_id,:journal_id=>comment.id, :user_activity_id => user_activity_id},
|
|
:method => 'get',
|
|
:confirm => l(:text_are_you_sure),
|
|
:remote=>true,
|
|
:id => "delete_reply_#{activity_id}_#{comment.id}",
|
|
:class => 'fr mr20 undis',
|
|
:title => l(:button_delete)
|
|
) if comment.user_id == User.current.id %>
|
|
<% elsif type == 'Syllabus' %>
|
|
<span style="position: relative" class="fr mr20">
|
|
<%= link_to(
|
|
l(:button_reply),
|
|
{:controller => 'users', :action => 'reply_to', :reply_id => comment.id, :type => type},
|
|
:remote => true,
|
|
:method => 'get',
|
|
:title => l(:button_reply)) %>
|
|
<span id="reply_iconup_<%= comment.id %>" class="reply_iconup02" style="display: none"> ︿</span>
|
|
</span>
|
|
<% if User.current.admin? || User.current == Syllabus.find(activity_id).user || comment.user == User.current%>
|
|
<%= link_to('删除', {:controller => 'words', :action => 'destroy', :object_id => comment, :user_id => comment.user},:id => "delete_reply_#{activity_id}_#{comment.id}",
|
|
:remote => true, :confirm => l(:text_are_you_sure), :method => 'delete', :class => "fr mr20 undis", :title => l(:button_delete)) %>
|
|
<% end %>
|
|
<% end %>
|
|
</span>
|
|
<div class="cl"></div>
|
|
</div>
|
|
</div>
|
|
<p id="reply_message_<%= comment.id%>"></p>
|
|
<% end %>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</li>
|
|
<% end %>
|
|
</ul> |