Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_due_email.html.haml « notify « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e81144b8fcbe2ae1702f36328f7437929e9694d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%p.details
  #{link_to @issue.author_name, user_url(@issue.author)}'s issue is due soon.

- if @issue.assignees.any?
  %p
    Assignee: #{@issue.assignee_list}
%p
  This issue is due on: #{@issue.due_date.to_s(:medium)}

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