summaryrefslogtreecommitdiff
path: root/app/views/shared/form_elements/_description.html.haml
blob: 413df29da772a3be97f8d1f28108fd4e868d0ab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- project = local_assigns.fetch(:project)
- model = local_assigns.fetch(:model)
- form = local_assigns.fetch(:form)
- placeholder = model.is_a?(MergeRequest) ? _('Describe the goal of the changes and what reviewers should be aware of.') : _('Write a comment or drag your files hereā€¦')

- supports_quick_actions = true
- preview_url = preview_markdown_path(project, target_type: model.class.name)

.form-group.row.detail-page-description
  = form.label :description, 'Description', class: 'col-form-label col-sm-2'
  .col-sm-10
    - if model.is_a?(MergeRequest)
      = hidden_field_tag :merge_request_diff_head_sha, model.diff_head_sha

    - if model.is_a?(Issuable)
      = render 'shared/issuable/form/template_selector', issuable: model
    = render layout: 'shared/md_preview', locals: { url: preview_url, referenced_users: true } do
      = render 'shared/zen', f: form, attr: :description,
                               classes: 'note-textarea qa-issuable-form-description rspec-issuable-form-description',
                               placeholder: placeholder,
                               supports_quick_actions: supports_quick_actions
      = render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
      .clearfix
      .error-alert