83 lines
3.1 KiB
Text
83 lines
3.1 KiB
Text
|
= render "home_panel"
|
||
|
|
||
|
.row
|
||
|
%section.col-md-9
|
||
|
= render "events/event_last_push", event: @last_push
|
||
|
= render 'shared/event_filter'
|
||
|
.content_list
|
||
|
= spinner
|
||
|
%aside.col-md-3.project-side.hidden-sm.hidden-xs
|
||
|
.clearfix
|
||
|
- if @project.archived?
|
||
|
.alert.alert-warning
|
||
|
%h4
|
||
|
%i.icon-warning-sign
|
||
|
Archived project!
|
||
|
%p Repository is read-only
|
||
|
|
||
|
- if @project.forked_from_project
|
||
|
.alert.alert-success
|
||
|
%i.icon-code-fork.project-fork-icon
|
||
|
Forked from:
|
||
|
%br
|
||
|
= link_to @project.forked_from_project.name_with_namespace, project_path(@project.forked_from_project)
|
||
|
|
||
|
.star-buttons
|
||
|
%span.star.js-toggler-container{class: @show_star ? 'on' : ''}
|
||
|
- if current_user
|
||
|
= link_to_toggle_star('Star this project.', false, true)
|
||
|
= link_to_toggle_star('Unstar this project.', true, true)
|
||
|
- else
|
||
|
= link_to_toggle_star('You must sign in to star a project.', false, false)
|
||
|
|
||
|
- unless @project.empty_repo?
|
||
|
.fork-buttons
|
||
|
- if current_user && can?(current_user, :fork_project, @project) && @project.namespace != current_user.namespace
|
||
|
- if current_user.already_forked?(@project)
|
||
|
= link_to project_path(current_user.fork_of(@project)), class: 'btn btn-block' do
|
||
|
%i.icon-compass
|
||
|
Go to fork
|
||
|
%span.count
|
||
|
= @project.forks_count
|
||
|
- else
|
||
|
= link_to fork_project_path(@project), title: "Fork", class: "btn btn-block", method: "POST" do
|
||
|
%i.icon-code-fork
|
||
|
Fork repository
|
||
|
%span.count
|
||
|
= @project.forks_count
|
||
|
- unless @project.empty_repo?
|
||
|
- if can? current_user, :download_code, @project
|
||
|
= render 'projects/repositories/download_archive', btn_class: 'btn-block btn-group-justified', split_button: true
|
||
|
|
||
|
= link_to project_compare_index_path(@project, from: @repository.root_ref, to: @ref || @repository.root_ref), class: 'btn btn-block' do
|
||
|
Compare code
|
||
|
|
||
|
- if @repository.readme
|
||
|
- readme = @repository.readme
|
||
|
= link_to project_blob_path(@project, tree_join(@repository.root_ref, readme.name)), class: 'btn btn-block' do
|
||
|
= readme.name
|
||
|
|
||
|
- if @repository.version
|
||
|
- version = @repository.version
|
||
|
= link_to project_blob_path(@project, tree_join(@repository.root_ref, version.name)), class: 'btn btn-block' do
|
||
|
Version:
|
||
|
%span.count
|
||
|
= @repository.blob_by_oid(version.id).data
|
||
|
|
||
|
.prepend-top-10
|
||
|
%p
|
||
|
%span.light Created on
|
||
|
#{@project.created_at.stamp('Aug 22, 2013')}
|
||
|
%p
|
||
|
%span.light Owned by
|
||
|
- if @project.group
|
||
|
#{link_to @project.group.name, @project.group} group
|
||
|
- else
|
||
|
#{link_to @project.owner_name, @project.owner}
|
||
|
|
||
|
|
||
|
- if @project.gitlab_ci?
|
||
|
%hr
|
||
|
= link_to @project.gitlab_ci_service.builds_path do
|
||
|
= image_tag @project.gitlab_ci_service.status_img_path, alt: "build status"
|