2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="resources mt10" id="user_activity_<%= user_activity_id%>">
|
2015-08-31 14:52:56 +08:00
|
|
|
|
<div class="homepagePostBrief">
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<div class="homepagePostPortrait">
|
2015-08-31 14:52:56 +08:00
|
|
|
|
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id), :alt => "用户头像" %>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostDes">
|
2015-08-31 14:52:56 +08:00
|
|
|
|
<div class="homepagePostTo break_word">
|
2015-08-21 17:26:52 +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_issues_path(activity.project), :class => "newsBlue ml15"%>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
2015-08-31 14:52:56 +08:00
|
|
|
|
<div class="homepagePostTitle break_word">
|
2015-08-31 15:33:20 +08:00
|
|
|
|
<%= link_to activity.subject.to_s, issue_path(activity), :class => "postGrey" %>
|
2015-09-02 11:54:52 +08:00
|
|
|
|
<span class='<%= get_issue_priority(activity.priority_id)[0] %>'>
|
|
|
|
|
<%= get_issue_priority(activity.priority_id)[1] %>
|
|
|
|
|
</span>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostSubmitContainer">
|
2015-08-25 15:08:35 +08:00
|
|
|
|
<div class="homepagePostAssignTo">指派给
|
|
|
|
|
<% unless activity.assigned_to_id.nil? %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% if activity.try(:assigned_to).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to activity.try(:assigned_to), user_path(activity.assigned_to_id), :class => "newsBlue mr15" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to activity.try(:assigned_to).try(:realname), user_path(activity.assigned_to_id), :class => "newsBlue mr15" %>
|
|
|
|
|
<% end %>
|
2015-08-25 15:08:35 +08:00
|
|
|
|
<% end %>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
2015-09-02 11:54:52 +08:00
|
|
|
|
<div class="homepagePostDeadline">
|
|
|
|
|
时间:
|
2015-09-02 18:18:08 +08:00
|
|
|
|
<%=format_time(activity.created_on) %>
|
2015-09-02 11:54:52 +08:00
|
|
|
|
</div>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
2015-09-06 10:07:18 +08:00
|
|
|
|
<div class="homepagePostIntro break_word upload_img" id="activity_description_<%= user_activity_id %>">
|
2015-08-31 14:28:43 +08:00
|
|
|
|
<% if activity.description? %>
|
|
|
|
|
<%= textAreailizable activity, :description, :attachments => activity.attachments %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<%#= activity.description.html_safe %>
|
|
|
|
|
</div>
|
2015-08-25 15:08:35 +08:00
|
|
|
|
<div class="mt10" style="font-weight:normal;">
|
2015-08-24 17:45:09 +08:00
|
|
|
|
<% if activity.attachments.any? %>
|
|
|
|
|
<% activity.attachments.each do |attachment| %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div class="break_word">
|
2015-08-25 15:08:35 +08:00
|
|
|
|
<span title="<%= attachment.filename %>" id="attachment_">
|
2015-08-31 14:13:17 +08:00
|
|
|
|
<%= link_to_short_attachment attachment,:length=> 58, :class => 'homepagePostFileAtt newsBlue', :download => true -%>
|
2015-08-24 17:45:09 +08:00
|
|
|
|
</span>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% if attachment.is_text? %>
|
|
|
|
|
<%= link_to image_tag('magnifier.png'),
|
|
|
|
|
:controller => 'attachments',
|
|
|
|
|
:action => 'show',
|
|
|
|
|
:id => attachment,
|
|
|
|
|
:filename => attachment.filename %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<span class="postAttSize">(
|
2015-08-25 15:08:35 +08:00
|
|
|
|
<%= number_to_human_size attachment.filesize %>)
|
|
|
|
|
</span>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
2015-08-24 17:45:09 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<div class="homepagePostReply">
|
2015-08-25 15:08:35 +08:00
|
|
|
|
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<div class="homepagePostReplyBanner">
|
2015-09-02 11:54:52 +08:00
|
|
|
|
<% count = activity.journals.count %>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<div class="homepagePostReplyBannerCount">回复(<%= count %>)</div>
|
2015-08-28 17:46:21 +08:00
|
|
|
|
<div class="homepagePostReplyBannerTime"><%#= format_date(activity.updated_on) %></div>
|
2015-09-02 11:54:52 +08:00
|
|
|
|
<% if count > 2 %>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<div class="homepagePostReplyBannerMore">
|
2015-09-02 11:54:52 +08:00
|
|
|
|
<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">
|
2015-09-02 17:41:19 +08:00
|
|
|
|
展开更多
|
2015-09-02 11:54:52 +08:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<% end %>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
</div>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<div class="homepagePostReplyInputContainer">
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
|
|
|
|
<%= form_for('new_form',:url => add_journal_issue_path(activity.id),:method => "post", :remote => true) do |f|%>
|
|
|
|
|
<input type="hidden" name="user_activity_id" value="<%=user_activity_id%>">
|
2015-09-11 14:44:50 +08:00
|
|
|
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="notes"></textarea>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<p nhname='contentmsg_<%= user_activity_id%>'></p>
|
|
|
|
|
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left;padding-top:3px;"></div>
|
2015-09-01 17:31:44 +08:00
|
|
|
|
<a id="new_message_cancel_btn_<%= user_activity_id%>" href="javascript:void(0)" class="grey_n_btn fr " style="margin-top:6px;">取消</a>
|
|
|
|
|
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" class="blue_n_btn fr mr5 " style="margin-top:6px;">发送</a>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% end%>
|
|
|
|
|
</div>
|
2015-08-21 17:26:52 +08:00
|
|
|
|
<div class="cl"></div>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<% replies_all_i = 0 %>
|
2015-09-02 11:54:52 +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.journals.reorder("created_on desc").each do |reply| %>
|
2015-09-02 11:54:52 +08:00
|
|
|
|
<% 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.user), :width => "33", :height => "33", :class =>"mt8"), user_path(reply.user_id), :alt => "用户头像" %>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="homepagePostReplyDes">
|
|
|
|
|
<div class="homepagePostReplyPublisher">
|
|
|
|
|
<% if reply.try(:user).try(:realname) == ' ' %>
|
|
|
|
|
<%= link_to reply.try(:user), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
2015-09-01 16:37:43 +08:00
|
|
|
|
<% else %>
|
2015-08-29 18:59:39 +08:00
|
|
|
|
<%= link_to reply.try(:user).try(:realname), user_path(reply.user_id), :class => "newsBlue mr10 f14" %>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
<% end %>
|
2015-09-02 18:18:08 +08:00
|
|
|
|
<%= format_time(reply.created_on) %>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
</div>
|
2015-09-15 16:27:53 +08:00
|
|
|
|
<div class="homepagePostReplyContent break_word">
|
|
|
|
|
<% if reply.details.any? %>
|
|
|
|
|
<% details_to_strings(reply.details).each do |string| %>
|
|
|
|
|
<p><%= string %></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<P><%= reply.notes.html_safe %></P>
|
|
|
|
|
</div>
|
2015-08-28 17:25:42 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
2015-09-07 17:38:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(function(){
|
|
|
|
|
var images=$("div#activity_description_<%= user_activity_id %>").find("img");
|
|
|
|
|
if (images.length>0) {
|
|
|
|
|
for (var i=0; i<images.length; i++){
|
|
|
|
|
var image=$(images[i]);
|
|
|
|
|
var element=$("<a></a>").attr("href",image.attr('src'));
|
|
|
|
|
image.wrap(element);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-09-08 11:55:52 +08:00
|
|
|
|
$('#activity_description_<%= user_activity_id %> a').colorbox({rel:'nofollow', close: "关闭", returnFocus: false});
|
2015-09-07 17:38:31 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|