2017-08-17 22:00:37 +05:30
|
|
|
- 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
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-xs-12
|
2017-08-17 22:00:37 +05:30
|
|
|
.svg-content
|
2018-03-17 18:26:18 +05:30
|
|
|
= image_tag 'illustrations/merge_requests.svg'
|
|
|
|
.col-xs-12
|
2017-08-17 22:00:37 +05:30
|
|
|
.text-content
|
|
|
|
- if has_button
|
|
|
|
%h4
|
2018-03-17 18:26:18 +05:30
|
|
|
= _("Merge requests are a place to propose changes you've made to a project and discuss those changes with others")
|
2017-08-17 22:00:37 +05:30
|
|
|
%p
|
2018-03-17 18:26:18 +05:30
|
|
|
= _("Interested parties can even contribute by pushing commits if they want to.")
|
|
|
|
.text-center
|
|
|
|
- if project_select_button
|
|
|
|
= render 'shared/new_project_item_select', path: 'merge_requests/new', label: _('New merge request'), type: :merge_requests
|
|
|
|
- else
|
|
|
|
= link_to _('New merge request'), button_path, class: 'btn btn-new', title: _('New merge request'), id: 'new_merge_request_link'
|
2017-08-17 22:00:37 +05:30
|
|
|
- else
|
|
|
|
%h4.text-center
|
2018-03-17 18:26:18 +05:30
|
|
|
= _("There are no merge requests to show")
|