mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-18 00:56:41 +10:00
79 lines
2.8 KiB
Plaintext
79 lines
2.8 KiB
Plaintext
.clearfix
|
|
.append-bottom-20
|
|
= render "shared/clone_panel"
|
|
|
|
- unless @project.empty_repo?
|
|
.well
|
|
%h4 Repository
|
|
%ul.nav.nav-pills
|
|
%li= link_to pluralize(number_with_delimiter(@repository.commit_count), 'commit'), namespace_project_commits_path(@project.namespace, @project, @ref || @repository.root_ref)
|
|
%li= link_to pluralize(number_with_delimiter(@repository.branch_names.count), 'branch'), namespace_project_branches_path(@project.namespace, @project)
|
|
%li= link_to pluralize(number_with_delimiter(@repository.tag_names.count), 'tag'), namespace_project_tags_path(@project.namespace, @project)
|
|
|
|
.actions
|
|
= link_to namespace_project_compare_index_path(@project.namespace, @project, from: @repository.root_ref, to: @ref || @repository.root_ref), class: 'btn btn-sm' do
|
|
%i.fa.fa-exchange
|
|
Compare code
|
|
|
|
- if can?(current_user, :download_code, @project)
|
|
|
|
= render 'projects/repositories/download_archive', split_button: true, btn_class: 'btn-group-sm'
|
|
|
|
- unless @project.empty_repo?
|
|
.well
|
|
%h4 Contribute
|
|
%ul.nav.nav-pills
|
|
- if @repository.changelog
|
|
%li.hidden-xs
|
|
= link_to changelog_url(@project) do
|
|
Changelog
|
|
- if @repository.contribution_guide
|
|
%li.hidden-xs
|
|
= link_to contribution_guide_url(@project) do
|
|
Contribution guide
|
|
- if @repository.license
|
|
%li
|
|
= link_to license_url(@project) do
|
|
License
|
|
.actions
|
|
= link_to url_for_new_issue(@project, only_path: true), title: "New Issue", class: 'btn btn-sm' do
|
|
%i.fa.fa-fw.fa-exclamation-circle
|
|
New issue
|
|
|
|
|
|
|
|
- if @project.archived?
|
|
.alert.alert-warning
|
|
%h4
|
|
%i.fa.fa-exclamation-triangle
|
|
Archived project!
|
|
%p Repository is read-only
|
|
|
|
- if @project.forked_from_project
|
|
.well
|
|
%i.fa.fa-code-fork.project-fork-icon
|
|
Forked from:
|
|
%br
|
|
= link_to @project.forked_from_project.name_with_namespace, project_path(@project.forked_from_project)
|
|
|
|
|
|
- if version = @repository.version
|
|
.well
|
|
%h4
|
|
Version
|
|
.pull-right
|
|
= link_to version_url(@project) do
|
|
= @repository.blob_by_oid(version.id).data
|
|
|
|
- @project.ci_services.each do |ci_service|
|
|
- if ci_service.active? && ci_service.respond_to?(:builds_path)
|
|
.well
|
|
%h4
|
|
= ci_service.title
|
|
.pull-right
|
|
- if ci_service.respond_to?(:status_img_path)
|
|
= link_to ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink' do
|
|
= image_tag ci_service.status_img_path, alt: "build status"
|
|
- else
|
|
= link_to 'view builds', ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink'
|