Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « compare « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b892d4d8ba5df7c17cd50fcdcdacf138ec79d3d1 (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
- @no_container = true
- add_to_breadcrumbs _("Compare Revisions"), project_compare_index_path(@project)
- page_title "#{params[:from]}...#{params[:to]}"

%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
          = s_("CompareBranches|There isn't anything to compare.")
        %p.slead
          - if params[:to] == params[:from]
            - sourceBranch = capture_haml do
              %span.ref-name= params[:from]
            - targetBranch = capture_haml do
              %span.ref-name= params[:to]
            = (s_("CompareBranches|%{source_branch} and %{target_branch} are the same.") % { source_branch: sourceBranch, target_branch: targetBranch }).html_safe
          - else
            = s_("CompareBranches|You'll need to use different branch names to get a valid comparison.")