2015-01-17 11:18:24 +08:00
|
|
|
<%= link_to(h("#{@issue.author}"+"(#{@issue.author_id.firstname+@issue.author_id.lastname})"), @issue_author_url) %>在<%= link_to(h("#{@issue.project.name}"),@project_url) %>
|
|
|
|
<%#= l(:text_issue_added, :id => "##{@issue.project_index}", :author => @issue.author) %> !-->
|
|
|
|
<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
2015-01-14 16:08:56 +08:00
|
|
|
<% @issue.attachments.each do |attach| %>
|
2015-01-15 18:48:19 +08:00
|
|
|
<%= 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-17 11:18:24 +08:00
|
|
|
<%= link_to( "我要回复", @issue_url) %>
|
|
|
|
<%#= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
2015-01-15 18:48:19 +08:00
|
|
|
|