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

_form.html.haml « topics « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2638e45c9eb7c21f3c88a51ace25d1b0675e6313 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
= gitlab_ui_form_for @topic, url: url, html: { multipart: true, class: 'js-project-topic-form gl-show-field-errors common-note-form js-quick-submit js-requires-input' }, authenticity_token: true do |f|
  = form_errors(@topic)

  .form-group
    = f.label :name do
      = _("Topic slug (name)")
    = f.text_field :name, placeholder: _('my-topic'), class: 'form-control input-lg', data: { qa_selector: 'topic_name_field' },
      required: true,
      title: _('Please fill in a name for your topic.'),
      autofocus: true

  .form-group
    = f.label :title do
      = _("Topic title")
    = f.text_field :title, placeholder: _('My topic'), class: 'form-control input-lg', data: { qa_selector: 'topic_title_field' },
      required: true,
      title: _('Please fill in a title for your topic.')

  .form-group
    = f.label :description, _("Description")
    .js-markdown-editor{ data: { render_markdown_path: preview_markdown_admin_topics_path,
                                 markdown_docs_path: help_page_path('user/markdown'),
                                 testid: 'topic-form-description',
                                 form_field_placeholder: _('Write a description…'),
                                 supports_quick_actions: 'false',
                                 enable_autocomplete: 'false',
                                 disable_attachments: 'true',
                                 form_field_classes: 'note-textarea js-gfm-input markdown-area' } }
      = f.hidden_field :description

  .form-group.gl-mt-3.gl-mb-3
    = f.label :avatar, _('Topic avatar'), class: 'gl-display-block'
    - if @topic.avatar?
      .avatar-container.rect-avatar.s90
        = topic_icon(@topic, alt: _('Topic avatar'), class: 'avatar topic-avatar s90')
    = render 'shared/choose_avatar_button', f: f
    - if @topic.avatar?
      .js-remove-topic-avatar{ data: { path: admin_topic_avatar_path(@topic), name: @topic.name } }

  - if @topic.new_record?
    .form-actions
      = f.submit _('Create topic'), pajamas_button: true
      = render Pajamas::ButtonComponent.new(href: admin_topics_path) do
        = _('Cancel')

  - else
    .form-actions
      = f.submit _('Save changes'), pajamas_button: true, data: { qa_selector: 'save_changes_button' }
      = render Pajamas::ButtonComponent.new(href: admin_topics_path) do
        = _('Cancel')