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

_description.html.haml « form_elements « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75f678dea5c84f3655b1eda558cb2b22fb9b8af5 (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
25
26
27
28
29
30
31
32
- @gfm_form = true
- 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 description or drag your files here…')
- no_issuable_templates = issuable_templates(ref_project, model.to_ability_name).empty?
- preview_url = preview_markdown_path(project, target_type: model.class.name)

.form-group
  = form.label :description, _('Description'), class: 'gl-display-block'
  - 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 'shared/form_elements/apply_template_warning', issuable: model
  - if model.is_a?(MergeRequest)
    = render 'shared/form_elements/apply_generated_description_warning', issuable: model

  .js-markdown-editor{ data: { render_markdown_path: preview_url,
                               markdown_docs_path: help_page_path('user/markdown'),
                               quick_actions_docs_path: help_page_path('user/project/quick_actions'),
                               qa_selector: 'issuable_form_description_field',
                               form_field_placeholder: placeholder,
                               autofocus: 'false',
                               form_field_classes: 'js-gfm-input markdown-area note-textarea rspec-issuable-form-description' } }
    = form.hidden_field :description

  - if no_issuable_templates && can?(current_user, :push_code, model.project)
    = render 'shared/issuable/form/default_templates'