debian-mirror-gitlab/app/views/notify/_reassigned_issuable_email.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
465 B
Text
Raw Normal View History

2022-08-13 15:12:31 +05:30
- to_names = content_tag(:strong, issuable.assignees.any? ? sanitize_name(issuable.assignee_list) : s_('Unassigned'))
2019-07-31 22:56:46 +05:30
%p
- if previous_assignees.any?
2022-08-13 15:12:31 +05:30
= html_escape(s_('Notify|Assignee changed from %{fromNames} to %{toNames}').html_safe % { fromNames: content_tag(:strong, sanitize_name(previous_assignees.map(&:name).to_sentence)), toNames: to_names })
2019-07-31 22:56:46 +05:30
- else
2022-08-13 15:12:31 +05:30
= html_escape(s_('Notify|Assignee changed to %{toNames}').html_safe % { toNames: to_names})