14 lines
630 B
Plaintext
14 lines
630 B
Plaintext
<%= l(:text_issue_updated, :id => "##{@issue.project_index}", :author => h(@journal.user)) %>
|
||
|
||
<ul>
|
||
<% details_to_strings(@journal.details, false, :only_path => false, :token => @token.value).each do |string| %>
|
||
<% if (!string.include? l(:label_attachment)) && (!string.include? "attachments") %>
|
||
<li><%= string %></li>
|
||
<% end %>
|
||
<% end %>
|
||
</ul>
|
||
|
||
<span style="float: left"><strong><%= l(:field_content)%>:</strong></span><span style="float: left; width: 540px"><%= @journal.notes %></span>
|
||
<hr />
|
||
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|