debian-mirror-gitlab/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
Text
Raw Normal View History

2018-10-15 14:42:47 +05:30
%p.details
2022-06-21 17:19:12 +05:30
= 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-10-15 14:42:47 +05:30
- if @issue.assignees.any?
%p
2019-07-31 22:56:46 +05:30
= assignees_label(@issue)
2018-10-15 14:42:47 +05:30
%p
2022-06-21 17:19:12 +05:30
= sprintf(s_('Notify|This issue is due on: %{issue_due_date}'), { issue_due_date: @issue.due_date.to_s(:medium) }).html_safe
2018-10-15 14:42:47 +05:30
- if @issue.description
2022-05-07 20:08:51 +05:30
.md
= markdown(@issue.description, pipeline: :email, author: @issue.author, current_user: @recipient, issuable_reference_expansion_enabled: true)