diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-10 17:46:16 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-10 17:46:16 +0000 |
commit | 270e3a4345f21b339352c3ffefbaa4deddab47c9 (patch) | |
tree | f99baa31564086a30c1c31d74b2deb1279f125c4 /app/views/mailer | |
parent | 0fab627a3cd87ba44119996b1478723d08e54229 (diff) | |
download | redmine-270e3a4345f21b339352c3ffefbaa4deddab47c9.tar.gz redmine-270e3a4345f21b339352c3ffefbaa4deddab47c9.zip |
Added "assigned to" field in mail notifications.
Also fixed mail_handler unit test (wrong fixture filename).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@527 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/mailer')
-rw-r--r-- | app/views/mailer/_issue.rhtml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/mailer/_issue.rhtml b/app/views/mailer/_issue.rhtml index 877947d38..bf17132e6 100644 --- a/app/views/mailer/_issue.rhtml +++ b/app/views/mailer/_issue.rhtml @@ -1,5 +1,6 @@ <%=l(:label_issue)%> #<%= issue.id %> - <%= issue.subject %> <%=l(:field_author)%>: <%= issue.author.display_name %> +<%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %> <%=l(:field_status)%>: <%= issue.status.name %> <%= issue.description %> |