To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / mailer / issue_edit.html.erb @ 1591:63650ae64bf2
History | View | Annotate | Download (495 Bytes)
| 1 |
<% if @journal.private_notes? %>
|
|---|---|
| 2 |
(<%= l(:field_private_notes) %>)
|
| 3 |
<% end %>
|
| 4 |
<%= l(:text_issue_updated, :id => "##{@issue.id}", :author => h(@journal.user)) %>
|
| 5 |
|
| 6 |
<ul>
|
| 7 |
<% details_to_strings(@journal_details, false, :only_path => false).each do |string| %>
|
| 8 |
<li><%= string %></li> |
| 9 |
<% end %>
|
| 10 |
</ul>
|
| 11 |
|
| 12 |
<%= textilizable(@journal, :notes, :only_path => false) %>
|
| 13 |
<hr /> |
| 14 |
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :users => @users, :issue_url => @issue_url } %>
|