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

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

%p
  This issue is due on: #{@issue.due_date}

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