socialforge/app/views/mailer/_issue.text.erb

20 lines
703 B
Plaintext
Raw Normal View History

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) %>
来源:<%= issue.project.name %>|&nbsp;项目缺陷<
2015-01-17 11:46:45 +08:00
内容:
<%= issue.description %>
<% unless @issue.attachments.nil? %>
2015-01-17 11:46:45 +08:00
附件:
2015-01-17 11:46:45 +08:00
<% @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) %>