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

36 lines
1.1 KiB
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
= render "projects/commits/head"
%h3.page-title
Compare View
= render "form"
- if @commits.present?
%div.panel.panel-default
.panel-heading
Commits (#{@commits.count})
- if @commits.size > MergeRequestDiff::COMMITS_SAFE_SIZE
%ul.well-list
- Commit.decorate(@commits.first(MergeRequestDiff::COMMITS_SAFE_SIZE)).each do |commit|
= render "projects/commits/inline_commit", commit: commit, project: @project
%li.warning-row.unstyled
other #{@commits.size - MergeRequestDiff::COMMITS_SAFE_SIZE} commits hidden to prevent performance issues.
- else
%ul.well-list= render Commit.decorate(@commits), project: @project
= render "projects/commits/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.