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

106 lines
5.8 KiB
Plaintext
Raw Normal View History

2015-09-01 15:24:37 +08:00
<div class="resources mt10" id="user_activity_<%= user_activity_id%>">
<div class="homepagePostBrief">
2015-08-26 15:24:57 +08:00
<div class="homepagePostPortrait">
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id), :alt => "用户头像" %>
2015-08-26 15:24:57 +08:00
</div>
<div class="homepagePostDes">
<div class="homepagePostTo break_word">
2015-08-26 15:24:57 +08:00
<% if activity.try(:author).try(:realname) == ' ' %>
<%= link_to activity.try(:author), user_path(activity.author_id), :class => "newsBlue mr15" %>
<% else %>
<%= link_to activity.try(:author).try(:realname), user_path(activity.author_id), :class => "newsBlue mr15" %>
<% end %>
TO
2015-08-31 15:33:20 +08:00
<%= link_to activity.project.name.to_s+" | 项目讨论区",project_boards_path(activity.project), :class => "newsBlue ml15 mr5"%>
2015-08-26 15:24:57 +08:00
<!--<a href="javascript:void(0);" class="newsBlue ml15 mr5"><%= activity.project.name %>(项目讨论区)</a>-->
</div>
<div class="homepagePostTitle break_word">
2015-08-26 15:24:57 +08:00
<% if activity.parent_id.nil? %>
2015-08-31 15:33:20 +08:00
<%= link_to activity.subject.to_s.html_safe, project_boards_path(activity.project,:parent_id =>activity.id, :topic_id => activity.id), :class=> "postGrey"
%>
2015-08-26 15:24:57 +08:00
<% else %>
2015-08-31 15:33:20 +08:00
<%= link_to activity.parent.subject.to_s.html_safe, project_boards_path(activity.project,:parent_id =>activity.parent_id, :topic_id => activity.id), :class=> "postGrey"
%>
2015-08-26 15:24:57 +08:00
<% end %>
</div>
<div class="homepagePostDate">
2015-09-02 18:18:08 +08:00
时间:<%= format_time(activity.created_on) %>
2015-08-26 15:24:57 +08:00
</div>
<div class="homepagePostIntro break_word upload_img" id="activity_description_<%= user_activity_id%>">
2015-08-28 17:25:42 +08:00
<% if activity.parent_id.nil? %>
<%= activity.content.to_s.html_safe%>
<% else %>
<%= activity.parent.content.to_s.html_safe%>
<% end %>
</div>
2015-08-26 15:24:57 +08:00
</div>
<div class="cl"></div>
</div>
2015-08-28 17:25:42 +08:00
<div class="homepagePostReply">
2015-09-02 13:46:33 +08:00
<div class="homepagePostReplyBanner">
<% count = 0 %>
<div class="homepagePostReplyBannerCount" onclick="expand_reply_input('#reply_input_<%= user_activity_id %>');">回复(
2015-09-02 13:46:33 +08:00
<% if activity.parent %>
<% count=activity.parent.children.count%>
2015-08-28 17:25:42 +08:00
<% else %>
2015-09-02 13:46:33 +08:00
<% count=activity.children.count%>
2015-08-28 17:25:42 +08:00
<% end %>
2015-09-02 13:46:33 +08:00
<%=count %>
2015-08-28 17:25:42 +08:00
)</div>
2015-08-28 17:46:21 +08:00
<div class="homepagePostReplyBannerTime"><%#=format_date(activity.updated_on)%></div>
2015-08-28 17:25:42 +08:00
<%if count>2 %>
2015-09-02 17:41:19 +08:00
<div class="homepagePostReplyBannerMore"><a id="reply_btn_<%=user_activity_id%>" onclick="expand_reply('#reply_div_<%= user_activity_id %> li','#reply_btn_<%=user_activity_id%>')" data-count="<%= count %>" data-init="0" class=" replyGrey" href="javascript:void(0)" value="show_help" >展开更多</a></div>
2015-08-28 17:25:42 +08:00
<% end %>
2015-08-26 15:24:57 +08:00
</div>
2015-09-01 15:24:37 +08:00
2015-08-28 17:25:42 +08:00
<% activity= activity.parent_id.nil? ? activity : activity.parent %>
<% replies_all_i = 0 %>
2015-09-02 13:46:33 +08:00
<% if count > 0 %>
2015-09-03 16:02:58 +08:00
<div class="" id="reply_div_<%= user_activity_id %>">
2015-08-28 17:25:42 +08:00
<ul>
<% activity.children.reorder("created_on desc").each do |reply| %>
<% replies_all_i=replies_all_i+1 %>
2015-09-01 09:42:03 +08:00
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i>2 ? 'none' : '' %>">
2015-08-28 17:25:42 +08:00
<div class="homepagePostReplyPortrait">
2015-09-15 09:22:18 +08:00
<%= link_to image_tag(url_to_avatar(reply.author), :width => "33", :height => "33", :class =>"mt8"), user_path(reply.author_id), :alt => "用户头像" %>
2015-08-28 17:25:42 +08:00
</div>
<div class="homepagePostReplyDes">
<div class="homepagePostReplyPublisher">
<% if reply.try(:author).try(:realname) == ' ' %>
<%= link_to reply.try(:author), user_path(reply.author_id), :class => "newsBlue mr10 f14" %>
<% else %>
<%= link_to reply.try(:author).try(:realname), user_path(reply.author_id), :class => "newsBlue mr10 f14" %>
<% end %>
2015-09-02 18:18:08 +08:00
<%= format_time(reply.created_on) %>
2015-08-28 17:25:42 +08:00
</div>
2015-08-29 16:59:13 +08:00
<div class="homepagePostReplyContent break_word"><%= reply.content.html_safe %></div>
2015-08-28 17:25:42 +08:00
</div>
<div class="cl"></div>
</li>
<% end %>
</ul>
2015-08-21 17:26:52 +08:00
</div>
2015-08-28 17:25:42 +08:00
<% end %>
2015-09-19 11:18:41 +08:00
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), user_path(activity.author_id), :alt => "用户头像" %></div>
<div class="homepagePostReplyInputContainer mt3 mb10">
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
<%= form_for('new_form',:url => {:controller=>'messages',:action => 'reply', :id => activity.id, :board_id => activity.board_id, :is_board => 'true'},:method => "post", :remote => true) do |f|%>
<input type="hidden" name="quote[quote]" value="">
<input type="hidden" name="user_activity_id" value="<%=user_activity_id%>">
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="reply[content]"></textarea>
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left;padding-top:3px; margin-left: 5px;"></div>
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" class="blue_n_btn fr" style="margin-top:6px;">发送</a>
<div class="cl"></div>
<p nhname='contentmsg_<%= user_activity_id%>'></p>
<% end%>
</div>
<div class="cl"></div>
</div>
<div class="cl"></div>
</div>
2015-08-28 17:25:42 +08:00
</div>
</div>