summaryrefslogtreecommitdiff
path: root/app/views/notify/issue_due_email.html.haml
blob: 3208d061928b9363de5e4e9950fd3c58869f1edd (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) })

- 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)