2016-06-21 14:16:28 -04:00
|
|
|
- @no_container = true
|
2017-08-18 12:19:23 -04: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]}"
|
2013-06-23 12:47:22 -04:00
|
|
|
= render "projects/commits/head"
|
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
|
|
|
|
.light-well
|
|
|
|
.center
|
|
|
|
%h4
|
|
|
|
There isn't anything to compare.
|
|
|
|
%p.slead
|
|
|
|
- if params[:to] == params[:from]
|
2017-05-11 11:47:44 -04:00
|
|
|
%span.ref-name= params[:from]
|
2016-06-21 14:16:28 -04:00
|
|
|
and
|
2017-05-11 11:47:44 -04:00
|
|
|
%span.ref-name= params[:to]
|
2016-06-21 14:16:28 -04:00
|
|
|
are the same.
|
|
|
|
- else
|
|
|
|
You'll need to use different branch names to get a valid comparison.
|