##// END OF EJS Templates
Make the issue id from email notifications linkable to issue page (#23180)....
Jean-Philippe Lang -
r15205:690a6b792852
parent child
Show More
@@ -1,3 +1,3
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => h(@issue.author)) %>
1 <%= l(:text_issue_added, :id => link_to("##{@issue.id}", @issue_url), :author => h(@issue.author)).html_safe %>
2 <hr />
2 <hr />
3 <%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :users => @users, :issue_url => @issue_url } %>
3 <%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :users => @users, :issue_url => @issue_url } %>
@@ -1,7 +1,7
1 <% if @journal.private_notes? %>
1 <% if @journal.private_notes? %>
2 (<%= l(:field_private_notes) %>)
2 (<%= l(:field_private_notes) %>)
3 <% end %>
3 <% end %>
4 <%= l(:text_issue_updated, :id => "##{@issue.id}", :author => h(@journal.user)) %>
4 <%= l(:text_issue_updated, :id => link_to("##{@issue.id}", @issue_url), :author => h(@journal.user)).html_safe %>
5
5
6 <ul>
6 <ul>
7 <% details_to_strings(@journal_details, false, :only_path => false).each do |string| %>
7 <% details_to_strings(@journal_details, false, :only_path => false).each do |string| %>
General Comments 0
You need to be logged in to leave comments. Login now