31 lines
2.0 KiB
Plaintext
31 lines
2.0 KiB
Plaintext
<% count=activity.journals_for_messages.count %>
|
|
<% comments = activity.journals_for_messages.reorder("created_on desc") %>
|
|
<% no_children_comments = get_no_children_comments comments %>
|
|
|
|
<%= render :partial => 'users/reply_banner', :locals => {:count => count, :activity => activity, :user_activity_id => user_activity_id, :expand_more =>no_children_comments[:three_more]} %>
|
|
|
|
<% if count > 0 %>
|
|
<div class="" id="reply_div_<%= activity.id %>">
|
|
<%=render :partial => 'users/news_replies', :locals => {:comments => no_children_comments[:no_children_comments], :type => 'Syllabus', :activity_id => activity.id, :user_activity_id => user_activity_id} %>
|
|
</div>
|
|
<% end %>
|
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= activity.id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), user_path(User.current), :alt => "用户头像" %></div>
|
|
<div class="homepagePostReplyInputContainer mb10">
|
|
<% if User.current.logged? %>
|
|
<div nhname='new_message_<%= activity.id%>' style="display:none;">
|
|
<%= form_for('new_form',:url => {:controller => 'words', :action => 'leave_syllabus_message', :id => activity.id},:method => "post") do |f|%>
|
|
<div nhname='toolbar_container_<%= activity.id%>'></div>
|
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= activity.id%>' name="comment"></textarea>
|
|
<a id="new_message_submit_btn_<%= 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_<%= activity.id%>'></p>
|
|
<% end%>
|
|
</div>
|
|
<% else %>
|
|
<%= render :partial => "users/show_unlogged" %>
|
|
<% end %>
|
|
<div class="cl"></div>
|
|
</div>
|
|
<div class="cl"></div>
|
|
</div> |