summaryrefslogtreecommitdiff
path: root/app/views/shared/empty_states/_merge_requests.html.haml
blob: 06ceb9738bc644ad3ecf0921c985a860e070a0db (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
- button_path = local_assigns.fetch(:button_path, false)
- project_select_button = local_assigns.fetch(:project_select_button, false)
- has_button = button_path || project_select_button

.row.empty-state.merge-requests
  .col-12
    .svg-content
      = image_tag 'illustrations/merge_requests.svg'
  .col-12
    .text-content
      - if has_filter_bar_param?
        %h4.text-center
          = _("Sorry, your filter produced no results")
        %p.text-center
          = _("To widen your search, change or remove filters above")
      - else
        %h4
          = _("Merge requests are a place to propose changes you've made to a project and discuss those changes with others")
        %p
          = _("Interested parties can even contribute by pushing commits if they want to.")
        - if has_button
          .text-center
            - if project_select_button
              = render 'shared/new_project_item_select', path: 'merge_requests/new', label: _('New merge request'), type: :merge_requests, with_feature_enabled: 'merge_requests'
            - else
              = link_to _('New merge request'), button_path, class: 'btn btn-success', title: _('New merge request'), id: 'new_merge_request_link'