2015-01-17 11:46:45 +08:00
|
|
|
|
|
|
|
<%= link_to(h("#{@issue.author}(#{@issue.author.show_name})"), @issue_author_url) %>
|
|
|
|
在
|
|
|
|
<%= link_to(h("#{@issue.project.name}"),@project_url) %>中有了一个与您相关的最新活动,请您关注!
|
|
|
|
标题:<%= link_to(issue.subject, issue_url) %>
|
|
|
|
来源:<%= link_to(h("#{issue.project.name}"),@project_url) %>| 项目缺陷<
|
|
|
|
内容:
|
|
|
|
<%= textilizable(issue, :description, :only_path => false) %>
|
|
|
|
附件:
|
|
|
|
|
|
|
|
<% unless @issue.attachments.nil? %>
|
|
|
|
<% @issue.attachments.each do |attach| %>
|
|
|
|
<%= link_to_attachment(attach, :download => true, :token => @token.value, :only_path => false) %><%= l(:label_added) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
|
<%= link_to( "我要回复", issue_url) %>
|