gitlab-org--gitlab-foss/app/views/notify/issue_due_email.html.haml

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

13 lines
600 B
Plaintext
Raw Normal View History

%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
2018-02-06 18:09:59 +00:00
- if @issue.assignees.any?
%p
= assignees_label(@issue)
2018-02-06 18:09:59 +00:00
%p
= sprintf(s_('Notify|This issue is due on: %{issue_due_date}'), { issue_due_date: @issue.due_date.to_s(:medium) }).html_safe
2018-02-06 18:09:59 +00:00
- if @issue.description
.md
= markdown(@issue.description, pipeline: :email, author: @issue.author, current_user: @recipient, issuable_reference_expansion_enabled: true)