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

28 lines
832 B
Text
Raw Normal View History

2016-06-22 15:30:34 +05:30
- @no_container = true
2017-09-10 17:25:29 +05:30
- breadcrumb_title "Compare"
2015-09-11 14:41:01 +05:30
- page_title "#{params[:from]}...#{params[:to]}"
2017-09-10 17:25:29 +05:30
- if show_new_nav?
- add_to_breadcrumbs("Repository", project_tree_path(@project))
2014-09-02 18:07:02 +05:30
= render "projects/commits/head"
2016-08-24 12:49:21 +05:30
%div{ class: container_class }
2016-06-22 15:30:34 +05:30
.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"
2017-08-17 22:00:37 +05:30
= render "projects/diffs/diffs", diffs: @diffs, environment: @environment
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]
2017-09-10 17:25:29 +05:30
%span.ref-name= params[:from]
2016-06-22 15:30:34 +05:30
and
2017-09-10 17:25:29 +05:30
%span.ref-name= params[:to]
2016-06-22 15:30:34 +05:30
are the same.
- else
You'll need to use different branch names to get a valid comparison.