2014-07-05 13:31:32 +08:00
|
|
|
<%= l(:text_issue_added, :id => "##{@issue.project_index}", :author => @issue.author) %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
2015-01-14 16:08:56 +08:00
|
|
|
<% @issue.attachments.each do |attach| %>
|
2015-01-15 18:48:19 +08:00
|
|
|
<%= l(:label_attachment) %>
|
|
|
|
<%= link_to_attachment(attach, :download => true, :token => @token.value, :only_path => false) %> <%= l(:label_added) %>
|
2015-01-14 16:08:56 +08:00
|
|
|
<% end %>
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
----------------------------------------
|
2015-01-15 18:48:19 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
2015-01-15 18:48:19 +08:00
|
|
|
|