2016-01-19 16:12:03 +05:30
|
|
|
- @no_container = true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
= content_for :meta_tags do
|
|
|
|
- if current_user
|
|
|
|
= auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, format: :atom, private_token: current_user.private_token), title: "#{@project.name} activity")
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
= content_for :flash_message do
|
|
|
|
- if current_user && can?(current_user, :download_code, @project)
|
|
|
|
= render 'shared/no_ssh'
|
|
|
|
= render 'shared/no_password'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
= render 'projects/last_push'
|
2014-09-02 18:07:02 +05:30
|
|
|
= render "home_panel"
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.project-stats.row-content-block.second-block
|
2016-06-16 23:09:34 +05:30
|
|
|
%div{ class: (container_class) }
|
|
|
|
%ul.nav
|
2015-09-11 14:41:01 +05:30
|
|
|
%li
|
2016-06-16 23:09:34 +05:30
|
|
|
= link_to project_files_path(@project) do
|
|
|
|
Files (#{repository_size})
|
2015-09-11 14:41:01 +05:30
|
|
|
%li
|
2016-06-16 23:09:34 +05:30
|
|
|
= link_to namespace_project_commits_path(@project.namespace, @project, current_ref) do
|
|
|
|
#{'Commit'.pluralize(@project.commit_count)} (#{number_with_delimiter(@project.commit_count)})
|
2015-09-11 14:41:01 +05:30
|
|
|
%li
|
2016-06-16 23:09:34 +05:30
|
|
|
= link_to namespace_project_branches_path(@project.namespace, @project) do
|
2016-06-22 15:30:34 +05:30
|
|
|
#{'Branch'.pluralize(@repository.branch_count)} (#{number_with_delimiter(@repository.branch_count)})
|
2015-09-11 14:41:01 +05:30
|
|
|
%li
|
2016-06-16 23:09:34 +05:30
|
|
|
= link_to namespace_project_tags_path(@project.namespace, @project) do
|
2016-06-22 15:30:34 +05:30
|
|
|
#{'Tag'.pluralize(@repository.tag_count)} (#{number_with_delimiter(@repository.tag_count)})
|
2016-06-16 23:09:34 +05:30
|
|
|
|
|
|
|
- if default_project_view != 'readme' && @repository.readme
|
|
|
|
%li
|
|
|
|
= link_to 'Readme', readme_path(@project)
|
|
|
|
|
|
|
|
- if @repository.changelog
|
|
|
|
%li
|
|
|
|
= link_to 'Changelog', changelog_path(@project)
|
|
|
|
|
|
|
|
- if @repository.license_blob
|
|
|
|
%li
|
|
|
|
= link_to license_short_name(@project), license_path(@project)
|
|
|
|
|
|
|
|
- if @repository.contribution_guide
|
|
|
|
%li
|
|
|
|
= link_to 'Contribution guide', contribution_guide_path(@project)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
- if current_user && can_push_branch?(@project, @project.default_branch)
|
|
|
|
- unless @repository.changelog
|
|
|
|
%li.missing
|
|
|
|
= link_to add_special_file_path(@project, file_name: 'CHANGELOG') do
|
|
|
|
Add Changelog
|
|
|
|
- unless @repository.license_blob
|
|
|
|
%li.missing
|
|
|
|
= link_to add_special_file_path(@project, file_name: 'LICENSE') do
|
|
|
|
Add License
|
|
|
|
- unless @repository.contribution_guide
|
|
|
|
%li.missing
|
|
|
|
= link_to add_special_file_path(@project, file_name: 'CONTRIBUTING.md', commit_message: 'Add contribution guide') do
|
|
|
|
Add Contribution guide
|
2016-06-22 15:30:34 +05:30
|
|
|
- unless @repository.gitlab_ci_yml
|
|
|
|
%li.missing
|
|
|
|
= link_to add_special_file_path(@project, file_name: '.gitlab-ci.yml') do
|
|
|
|
Set Up CI
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
- if @repository.commit
|
|
|
|
.content-block.second-block.white
|
2016-01-19 16:12:03 +05:30
|
|
|
%div{ class: container_class }
|
|
|
|
= render 'projects/last_commit', commit: @repository.commit, project: @project
|
|
|
|
|
|
|
|
%div{ class: container_class }
|
|
|
|
- if @project.archived?
|
|
|
|
.text-warning.center.prepend-top-20
|
|
|
|
%p
|
|
|
|
= icon("exclamation-triangle fw")
|
|
|
|
Archived project! Repository is read-only
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
%div{class: "project-show-#{default_project_view}"}
|
|
|
|
= render default_project_view
|