Redmine/app/views/mailer/_issue_text_html.rhtml
Jean-Philippe Lang 74ed14f8a2 Notifications about issues (add/edit) are now sent in plain text and html.
Removed lang specific strings in the corresponding mail templates, so that there is only one template for all languages.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@723 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-09-11 17:12:34 +00:00

11 lines
453 B
Plaintext

<%= link_to "#{issue.tracker.name} ##{issue.id}", :only_path => false, :host => Setting.host_name, :controller => 'issues', :action => 'show', :id => issue %>:
<%= issue.subject %>
<ul>
<li><%=l(:field_author)%>: <%= issue.author.name %></li>
<li><%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %></li>
<li><%=l(:field_status)%>: <%= issue.status.name %></li>
</ul>
<%= textilizable(issue.description) %>