summaryrefslogtreecommitdiff
path: root/app/views/notify/issue_due_email.html.haml
blob: 30ba53cf801821c3606e7cc4ad750886fdbcba69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- if Gitlab::CurrentSettings.email_author_in_body
  %p.details
    #{link_to @issue.author_name, user_url(@issue.author)} updated the issue's due date:

- if @issue.assignees.any?
  %p
    Assignee: #{@issue.assignee_list}

%p
  This Issue has a new due date: #{ @issue.due_date }

- if @issue.description
  %div
  = markdown(@issue.description, pipeline: :email, author: @issue.author)