Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_reassigned_issuable_email.html.haml « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ead8e5d0a7e0f594e0d7e4de27dc67a4ace7ed01 (plain)
1
2
3
4
5
6
7
- to_names = content_tag(:strong, issuable.assignees.any? ? sanitize_name(issuable.assignee_list) : _('Unassigned'))

%p
  - if previous_assignees.any?
    = 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 })
  - else
    = html_escape(s_('Notify|Assignee changed to %{toNames}').html_safe % { toNames: to_names})