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

26 lines
1 KiB
Text
Raw Normal View History

2016-06-22 15:30:34 +05:30
- @no_container = true
2018-03-17 18:26:18 +05:30
- add_to_breadcrumbs _("Compare Revisions"), project_compare_index_path(@project)
2015-09-11 14:41:01 +05:30
- page_title "#{params[:from]}...#{params[:to]}"
2014-09-02 18:07:02 +05:30
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"
2019-03-02 22:35:43 +05:30
= render "projects/diffs/diffs", diffs: @diffs, environment: @environment, diff_page_context: "is-compare"
2016-06-22 15:30:34 +05:30
- else
2018-11-08 19:23:39 +05:30
.card.bg-light
2016-06-22 15:30:34 +05:30
.center
%h4
2018-03-17 18:26:18 +05:30
= s_("CompareBranches|There isn't anything to compare.")
2016-06-22 15:30:34 +05:30
%p.slead
- if params[:to] == params[:from]
2018-03-17 18:26:18 +05:30
- source_branch = capture do
%span.ref-name= params[:from]
- target_branch = capture do
%span.ref-name= params[:to]
= (s_("CompareBranches|%{source_branch} and %{target_branch} are the same.") % { source_branch: source_branch, target_branch: target_branch }).html_safe
2016-06-22 15:30:34 +05:30
- else
2018-03-17 18:26:18 +05:30
= _("You'll need to use different branch names to get a valid comparison.")