summaryrefslogtreecommitdiff
path: root/app/views/projects/compare/_form.html.haml
blob: 9744d293c8bcf58556a3488393da182a34c417bb (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
= form_tag project_compare_index_path(@project), method: :post, class: 'form-inline js-requires-input js-signature-container', data: { 'signatures-path' => signatures_namespace_project_compare_index_path } do
  - if params[:to] && params[:from]
    .compare-switch-container
      = link_to icon('exchange'), { from: params[:to], to: params[:from] }, class: 'commits-compare-switch has-tooltip btn btn-white', title: 'Swap revisions'
  .form-group.dropdown.compare-form-group.to.js-compare-to-dropdown
    .input-group.inline-input-group
      %span.input-group-prepend
        .input-group-text
          = s_("CompareBranches|Source")
      = hidden_field_tag :to, params[:to]
      = button_tag type: 'button', title: params[:to], class: "form-control compare-dropdown-toggle js-compare-dropdown has-tooltip monospace", required: true, data: { refs_url: refs_project_path(@project), toggle: "dropdown", target: ".js-compare-to-dropdown", selected: params[:to], field_name: :to } do
        .dropdown-toggle-text.str-truncated= params[:to] || _("Select branch/tag")
    = render 'shared/ref_dropdown'
  .compare-ellipsis.inline ...
  .form-group.dropdown.compare-form-group.from.js-compare-from-dropdown
    .input-group.inline-input-group
      %span.input-group-prepend
        .input-group-text
          = s_("CompareBranches|Target")
      = hidden_field_tag :from, params[:from]
      = button_tag type: 'button', title: params[:from], class: "form-control compare-dropdown-toggle js-compare-dropdown has-tooltip monospace", required: true, data: { refs_url: refs_project_path(@project), toggle: "dropdown", target: ".js-compare-from-dropdown", selected: params[:from], field_name: :from } do
        .dropdown-toggle-text.str-truncated= params[:from] || _("Select branch/tag")
    = render 'shared/ref_dropdown'
   
  = button_tag s_("CompareBranches|Compare"), class: "btn btn-success commits-compare-btn"
  - if @merge_request.present?
    = link_to _("View open merge request"), project_merge_request_path(@project, @merge_request), class: 'prepend-left-10 btn'
  - elsif create_mr_button?
    = link_to _("Create merge request"), create_mr_path, class: 'prepend-left-10 btn'