##// END OF EJS Templates
add roadie-rails gem for e-mail inline styles (#8335, #20641)...
add roadie-rails gem for e-mail inline styles (#8335, #20641) Contributed by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@14540 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13918:391140d280dc
r14158:0dc3c2fe1c86
Show More
_issue.html.erb
14 lines | 591 B | text/plain | TextLexer
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <h1><%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %></h1>
Jean-Philippe Lang
Notifications about issues (add/edit) are now sent in plain text and html....
r712
Jean-Philippe Lang
Fixed that standard fields disabled still appear in email notifications (#14584)....
r11849 <%= render_email_issue_attributes(issue, users.first, true) %>
Jean-Philippe Lang
Notifications about issues (add/edit) are now sent in plain text and html....
r712
Jean-Philippe Lang
Set a max width to html email content (#16535)....
r13918 <div class="description"><%= textilizable(issue, :description, :only_path => false) %></div>
Jean-Philippe Lang
Add links to attachments in new issue email notification (#12293)....
r11623
<% if issue.attachments.any? %>
<fieldset class="attachments"><legend><%= l(:label_attachment_plural) %></legend>
<% issue.attachments.each do |attachment| %>
<%= link_to_attachment attachment, :download => true, :only_path => false %>
(<%= number_to_human_size(attachment.filesize) %>)<br />
<% end %>
</fieldset>
<% end %>