gitlab-org--gitlab-foss/app/views/projects/compare/show.html.haml

26 lines
1,010 B
Text
Raw Normal View History

- @no_container = true
- add_to_breadcrumbs _("Compare Revisions"), project_compare_index_path(@project)
2015-04-30 13:06:18 -04:00
- page_title "#{params[:from]}...#{params[:to]}"
2012-02-06 15:32:04 -05:00
2016-06-30 09:01:26 -04:00
%div{ class: container_class }
.sub-header-block.no-bottom-space
= render "form"
2012-02-06 15:32:04 -05:00
- if @commits.present?
= render "projects/commits/commit_list"
= render "projects/diffs/diffs", diffs: @diffs, environment: @environment
- else
.card.bg-light
.center
%h4
= s_("CompareBranches|There isn't anything to compare.")
%p.slead
- if params[:to] == params[:from]
- source_branch = capture do
%span.ref-name= params[:from]
- target_branch = capture do
%span.ref-name= params[:to]
2018-01-03 10:32:03 -05:00
= (s_("CompareBranches|%{source_branch} and %{target_branch} are the same.") % { source_branch: source_branch, target_branch: target_branch }).html_safe
- else
2018-01-03 08:46:06 -05:00
= _("You'll need to use different branch names to get a valid comparison.")