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: e512d7732e2c59a6984034dbc1aeedb48845feaa (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 #{issue_reference_link(@issue)} is due soon.

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

- if @issue.description
  .md
    = markdown(@issue.description, pipeline: :email, author: @issue.author, current_user: @recipient, issuable_reference_expansion_enabled: true)