2016-06-21 14:16:28 -04:00
|
|
|
- @no_container = true
|
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"
|
2016-07-27 07:09:52 -04:00
|
|
|
= render "projects/diffs/diffs", diffs: @diffs
|
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]
|
|
|
|
%span.label-branch #{params[:from]}
|
|
|
|
and
|
|
|
|
%span.label-branch #{params[:to]}
|
|
|
|
are the same.
|
|
|
|
- else
|
|
|
|
You'll need to use different branch names to get a valid comparison.
|