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

issue_due_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: 9dd501022dd4dbf383d77677dce564b9e0a8ab68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%p.details
  = sprintf(s_("Notify|%{author_link}'s issue %{issue_reference_link} is due soon."), { author_link: link_to(@issue.author_name, user_url(@issue.author)), issue_reference_link: issue_reference_link(@issue) }).html_safe

- if @issue.assignees.any?
  %p
    = assignees_label(@issue)
%p
  = sprintf(s_('Notify|This issue is due on: %{issue_due_date}'), { issue_due_date: @issue.due_date.to_s(:medium) }).html_safe

- if @issue.description
  .md
    = markdown(@issue.description, pipeline: :email, author: @issue.author, current_user: @recipient, issuable_reference_expansion_enabled: true)