debian-mirror-gitlab/app/views/projects/branches/_branch.html.haml

37 lines
1.6 KiB
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
- commit = @repository.commit(branch.target)
%li(class="js-branch-#{branch.name}")
2015-09-25 12:07:36 +05:30
%div
2015-04-26 12:48:37 +05:30
= link_to namespace_project_tree_path(@project.namespace, @project, branch.name) do
%strong.str-truncated= branch.name
2015-09-25 12:07:36 +05:30
 
2014-09-02 18:07:02 +05:30
- if branch.name == @repository.root_ref
2015-09-25 12:07:36 +05:30
%span.label.label-primary default
2015-09-11 14:41:01 +05:30
- elsif @repository.merged_to_root_ref? branch.name
2015-09-25 12:07:36 +05:30
%span.label.label-info.has_tooltip(title="Merged into #{@repository.root_ref}")
2015-09-11 14:41:01 +05:30
merged
2014-09-02 18:07:02 +05:30
- if @project.protected_branch? branch.name
%span.label.label-success
2015-04-26 12:48:37 +05:30
%i.fa.fa-lock
2014-09-02 18:07:02 +05:30
protected
2015-09-25 12:07:36 +05:30
.controls.hidden-xs
2015-09-11 14:41:01 +05:30
- if create_mr_button?(@repository.root_ref, branch.name)
= link_to create_mr_path(@repository.root_ref, branch.name), class: 'btn btn-grouped btn-xs' do
= icon('plus')
Merge Request
2014-09-02 18:07:02 +05:30
- if branch.name != @repository.root_ref
2015-04-26 12:48:37 +05:30
= link_to namespace_project_compare_index_path(@project.namespace, @project, from: @repository.root_ref, to: branch.name), class: 'btn btn-grouped btn-xs', method: :post, title: "Compare" do
2015-09-11 14:41:01 +05:30
= icon("exchange")
2014-09-02 18:07:02 +05:30
Compare
- if can_remove_branch?(@project, branch.name)
2015-04-26 12:48:37 +05:30
= link_to namespace_project_branch_path(@project.namespace, @project, branch.name), class: 'btn btn-grouped btn-xs btn-remove remove-row', method: :delete, data: { confirm: 'Removed branch cannot be restored. Are you sure?'}, remote: true do
2015-09-11 14:41:01 +05:30
= icon("trash-o")
2014-09-02 18:07:02 +05:30
- if commit
2015-09-25 12:07:36 +05:30
= render 'projects/branches/commit', commit: commit, project: @project
2014-09-02 18:07:02 +05:30
- else
%p
Cant find HEAD commit for this branch