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

28 lines
832 B
Text
Raw Normal View History

- @no_container = true
2017-07-12 04:35:53 -04:00
- breadcrumb_title "Compare"
2015-04-30 13:06:18 -04:00
- page_title "#{params[:from]}...#{params[:to]}"
- if show_new_nav?
2017-07-07 16:50:34 -04:00
- add_to_breadcrumbs("Repository", project_tree_path(@project))
= render "projects/commits/head"
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
.light-well
.center
%h4
There isn't anything to compare.
%p.slead
- if params[:to] == params[:from]
%span.ref-name= params[:from]
and
%span.ref-name= params[:to]
are the same.
- else
You'll need to use different branch names to get a valid comparison.