summaryrefslogtreecommitdiff
path: root/app/views/projects/merge_requests/_nav_btns.html.haml
blob: 00d12423eb9ff52677a99edd0d6c12de5cd60643 (plain)
1
2
3
4
5
6
7
8
9
10
11
- issuable_type = 'merge-requests'
- notification_email = @current_user.present? ? @current_user.notification_email_or_default : nil

= render 'shared/issuable/feed_buttons', show_calendar_button: false
.js-csv-import-export-buttons{ data: { show_export_button: "true", issuable_type: issuable_type, issuable_count: issuables_count_for_state(issuable_type.to_sym, params[:state]), email: notification_email, export_csv_path: export_csv_project_merge_requests_path(@project, request.query_parameters), container_class: 'gl-mr-3' } }

- if @can_bulk_update
  = button_tag _("Edit merge requests"), class: "gl-button btn btn-default gl-mr-3 js-bulk-update-toggle"
- if merge_project
  = link_to new_merge_request_path, class: "gl-button btn btn-confirm", title: _("New merge request") do
    = _('New merge request')