summaryrefslogtreecommitdiff
path: root/app/views/projects/compare/show.html.haml
blob: a1bca2cf83a5b11793d55d667eeaa92c3b129a66 (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
- @no_container = true
- page_title "#{params[:from]}...#{params[:to]}"
= render "projects/commits/head"

%div{ class: container_class }
  .sub-header-block.no-bottom-space
    = render "form"

  - if @commits.present?
    = render "projects/commits/commit_list"
    = render "projects/diffs/diffs", diffs: @diffs, environment: @environment
  - else
    .light-well
      .center
        %h4
          There isn't anything to compare.
        %p.slead
          - if params[:to] == params[:from]
            %span.ref-name= params[:from]
            and
            %span.ref-name= params[:to]
            are the same.
          - else
            You'll need to use different branch names to get a valid comparison.