Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions app/views/user_mailer/feedback_notification.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@
<%= _('Hello %{user_name},') % {user_name: @recipient_name} %>
</p>
<p>
<%= sanitize _(%Q{%{requestor} has requested feedback on a plan %{link_html}. To add comments, please visit the 'Plans' page under the Admin menu in %{tool_name} and open the plan.}) % {
<%=
sanitize _('%{requestor} has requested feedback on a plan %{link_html}. To add comments, please visit the "Plans" page under the Admin menu in %{tool_name} and open the plan.') % {
requestor: @requestor_name,
plan_name: @plan_name,
tool_name: tool_name,
allow_change_prefs: false,
link_html: link_to(@plan_name, plan_url(@plan))
} %>
}
%>
</p>

<p>
Alternatively, you can click the link below:<br>
<%= _("Alternatively, you can click the link below:") %>
<br>
<%= link_to plan_url(@plan), plan_url(@plan) %>
</p>

<%= render partial: 'email_signature', locals: { allow_change_prefs: false } %>
<%= render partial: 'email_signature', locals: { allow_change_prefs: false } %>