debian-mirror-gitlab/app/views/projects/compare/show.html.haml

25 lines
747 B
Text
Raw Normal View History

2016-06-22 15:30:34 +05:30
- @no_container = true
2015-09-11 14:41:01 +05:30
- page_title "#{params[:from]}...#{params[:to]}"
2014-09-02 18:07:02 +05:30
= render "projects/commits/head"
2016-06-22 15:30:34 +05:30
%div{ class: (container_class) }
.sub-header-block.no-bottom-space
= render "form"
2014-09-02 18:07:02 +05:30
2016-06-22 15:30:34 +05:30
- if @commits.present?
2015-09-25 12:07:36 +05:30
= render "projects/commits/commit_list"
2016-01-29 22:53:50 +05:30
= render "projects/diffs/diffs", diffs: @diffs, project: @project, diff_refs: @diff_refs
2016-06-22 15:30:34 +05:30
- 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.