2016-06-21 14:16:28 -04:00
- @no_container = true
2017-12-19 18:12:26 -05:00
- 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 }
2016-06-21 14:16:28 -04:00
.sub-header-block.no-bottom-space
= render "form"
2012-02-06 15:32:04 -05:00
2016-06-21 14:16:28 -04:00
- if @commits.present?
2015-09-07 05:44:00 -04:00
= render "projects/commits/commit_list"
2017-01-29 14:38:00 -05:00
= render "projects/diffs/diffs", diffs: @diffs, environment: @environment
2016-06-21 14:16:28 -04:00
- else
2018-04-13 16:51:54 -04:00
.card.bg-light
2016-06-21 14:16:28 -04:00
.center
%h4
2017-12-19 18:12:26 -05:00
= s_("CompareBranches|There isn't anything to compare.")
2016-06-21 14:16:28 -04:00
%p.slead
- if params[:to] == params[:from]
2018-01-03 11:43:01 -05:00
- source_branch = capture do
2017-12-19 18:12:26 -05:00
%span.ref-name= params[:from]
2018-01-03 11:43:01 -05:00
- target_branch = capture do
2017-12-19 18:12:26 -05:00
%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
2016-06-21 14:16:28 -04:00
- else
2018-01-03 08:46:06 -05:00
= _("You'll need to use different branch names to get a valid comparison.")