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

25 lines
627 B
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- page_title "#{params[:from]}...#{params[:to]}"
= render "projects/commits/head"
2012-02-06 20:32:04 +00:00
%h3.page-title
2012-02-06 20:32:04 +00:00
Compare View
= render "form"
2012-02-06 20:32:04 +00:00
- if @commits.present?
= render "projects/commits/commit_list"
= render "projects/diffs/diffs", diffs: @diffs, project: @project
- 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.