_form.html.haml
1.25 KB
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
%div
  - unless params[:to]
    %p.slead
      Fill input field with commit id like
      %code.label-branch 4eedf23
      or branch/tag name like
      %code.label-branch master
      and press compare button for the commits list and a code diff.
      %br
      Changes are shown <b>from</b> the version in the first field <b>to</b> the version in the second field.
  = form_tag project_compare_index_path(@project), method: :post do
    .clearfix
      .pull-left
        - if params[:to] && params[:from]
          = link_to 'switch', {from: params[:to], to: params[:from]}, {class: 'commits-compare-switch has_tooltip', title: 'Switch base of comparison'}
        = text_field_tag :from, params[:from], placeholder: "from", class: "input-xlarge input-xpadding"
        = "..."
        = text_field_tag :to, params[:to], placeholder: "to", class: "input-xlarge input-xpadding"
      .pull-left
         
        = submit_tag "Compare", class: "btn btn-create commits-compare-btn"
    - if @refs_are_same
      .alert
        %span Refs are the same
:javascript
  var availableTags = #{@project.repository.ref_names.to_json};
  $("#from, #to").autocomplete({
    source: availableTags,
    minLength: 1
  });
  disableButtonIfEmptyField('#to', '.commits-compare-btn');