debian-mirror-gitlab/app/views/projects/compare/show.html.haml
2017-09-10 17:25:29 +05:30

27 lines
832 B
Text

- @no_container = true
- breadcrumb_title "Compare"
- page_title "#{params[:from]}...#{params[:to]}"
- if show_new_nav?
- add_to_breadcrumbs("Repository", project_tree_path(@project))
= render "projects/commits/head"
%div{ class: container_class }
.sub-header-block.no-bottom-space
= render "form"
- 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.