2016-01-13 10:26:40 -05:00
|
|
|
- @no_container = true
|
|
|
|
|
2015-04-21 10:57:01 -04:00
|
|
|
= content_for :meta_tags do
|
|
|
|
- if current_user
|
2015-04-21 11:37:08 -04:00
|
|
|
= auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, format: :atom, private_token: current_user.private_token), title: "#{@project.name} activity")
|
2015-04-21 10:57:01 -04:00
|
|
|
|
2015-10-13 07:03:27 -04:00
|
|
|
= content_for :flash_message do
|
|
|
|
- if current_user && can?(current_user, :download_code, @project)
|
|
|
|
= render 'shared/no_ssh'
|
|
|
|
= render 'shared/no_password'
|
2014-12-26 07:25:37 -05:00
|
|
|
|
2016-01-13 08:37:25 -05:00
|
|
|
= render 'projects/last_push'
|
2013-11-06 10:13:21 -05:00
|
|
|
= render "home_panel"
|
2015-07-07 10:01:12 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
%nav.project-stats{ class: (container_class) }
|
|
|
|
%ul.nav
|
|
|
|
%li
|
|
|
|
= link_to project_files_path(@project) do
|
|
|
|
Files (#{repository_size})
|
|
|
|
%li
|
|
|
|
= link_to namespace_project_commits_path(@project.namespace, @project, current_ref) do
|
|
|
|
#{'Commit'.pluralize(@project.commit_count)} (#{number_with_delimiter(@project.commit_count)})
|
|
|
|
%li
|
|
|
|
= link_to namespace_project_branches_path(@project.namespace, @project) do
|
|
|
|
#{'Branch'.pluralize(@repository.branch_count)} (#{number_with_delimiter(@repository.branch_count)})
|
|
|
|
%li
|
|
|
|
= link_to namespace_project_tags_path(@project.namespace, @project) do
|
|
|
|
#{'Tag'.pluralize(@repository.tag_count)} (#{number_with_delimiter(@repository.tag_count)})
|
|
|
|
|
|
|
|
- if default_project_view != 'readme' && @repository.readme
|
2015-07-07 09:22:56 -04:00
|
|
|
%li
|
2016-06-29 08:07:12 -04:00
|
|
|
= link_to 'Readme', readme_path(@project)
|
2016-05-19 11:11:54 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
- if @repository.changelog
|
|
|
|
%li
|
|
|
|
= link_to 'Changelog', changelog_path(@project)
|
2016-05-19 11:11:54 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
- if @repository.license_blob
|
|
|
|
%li
|
|
|
|
= link_to license_short_name(@project), license_path(@project)
|
2016-05-19 11:11:54 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
- if @repository.contribution_guide
|
|
|
|
%li
|
|
|
|
= link_to 'Contribution guide', contribution_guide_path(@project)
|
2016-05-19 11:11:54 -04:00
|
|
|
|
2016-07-28 12:48:14 -04:00
|
|
|
- if @repository.gitlab_ci_yml
|
|
|
|
%li
|
2016-07-28 13:06:15 -04:00
|
|
|
= link_to 'CI configuration', ci_configuration_path(@project)
|
2016-07-28 12:48:14 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
- 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
|
|
|
|
- unless @repository.gitlab_ci_yml
|
|
|
|
%li.missing
|
|
|
|
= link_to add_special_file_path(@project, file_name: '.gitlab-ci.yml') do
|
|
|
|
Set Up CI
|
2016-06-29 09:16:47 -04:00
|
|
|
%li.project-repo-buttons-right
|
2016-06-29 08:07:12 -04:00
|
|
|
.project-repo-buttons.project-right-buttons
|
|
|
|
- if current_user
|
|
|
|
= render 'shared/members/access_request_buttons', source: @project
|
2015-04-26 18:43:02 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
.btn-group.project-repo-btn-group
|
|
|
|
= render "projects/buttons/download"
|
|
|
|
= render 'projects/buttons/dropdown'
|
2015-07-30 09:12:57 -04:00
|
|
|
|
2016-06-29 08:07:12 -04:00
|
|
|
= render 'shared/notifications/button', notification_setting: @notification_setting
|
2015-10-15 13:02:29 -04:00
|
|
|
- if @repository.commit
|
2016-06-29 08:07:12 -04:00
|
|
|
.project-last-commit{ class: container_class }
|
|
|
|
= render 'projects/last_commit', commit: @repository.commit, project: @project
|
2016-01-13 08:37:25 -05:00
|
|
|
|
|
|
|
%div{ class: container_class }
|
|
|
|
- if @project.archived?
|
|
|
|
.text-warning.center.prepend-top-20
|
|
|
|
%p
|
|
|
|
= icon("exclamation-triangle fw")
|
|
|
|
Archived project! Repository is read-only
|
2015-10-15 13:02:29 -04:00
|
|
|
|
2016-01-13 08:37:25 -05:00
|
|
|
%div{class: "project-show-#{default_project_view}"}
|
2016-06-18 11:19:57 -04:00
|
|
|
= render default_project_view
|