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

issue_cloned_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: a9e21e74e228c3f20ab3fa035194c880ae5d90af (plain)
1
2
3
4
5
6
7
- author_link = link_to @author.name, user_url(@author)
- if @can_access_project
  - string = _("%{author_link} cloned %{original_issue} to %{new_issue}.").html_safe
- else
  - string = _("%{author_link} cloned %{original_issue}. You don't have access to the new project.").html_safe
%p
  = string % { author_link: author_link, original_issue: issue_reference_link(@issue), new_issue: issue_reference_link(@new_issue, full: true) }