2016-01-13 10:26:40 -05:00
- @no_container = true
2017-08-16 05:35:59 -04:00
- breadcrumb_title "Details"
2017-07-11 03:53:52 -04:00
- @content_class = "limit-container-width" unless fluid_layout
2016-01-13 10:26:40 -05:00
2015-04-21 10:57:01 -04:00
= content_for :meta_tags do
2017-06-29 13:06:35 -04:00
= auto_discovery_link_tag(:atom, project_path(@project, rss_url_options), title: "#{@project.name} activity")
2015-04-21 10:57:01 -04:00
2017-06-29 07:43:01 -04:00
= render partial: 'flash_messages', locals: { project: @project }
2014-12-26 07:25:37 -05:00
2017-03-02 12:57:01 -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
2017-04-11 20:17:14 -04:00
- if can?(current_user, :download_code, @project)
2017-04-07 11:38:40 -04:00
%nav.project-stats{ class: container_class }
2017-02-21 14:35:08 -05:00
%ul.nav
%li
2017-06-29 13:06:35 -04:00
= link_to project_tree_path(@project) do
2017-06-07 16:13:44 -04:00
#{_('Files')} (#{storage_counter(@project.statistics.total_repository_size)})
2017-02-21 14:35:08 -05:00
%li
2017-06-29 13:06:35 -04:00
= link_to project_commits_path(@project, current_ref) do
2017-06-07 16:13:44 -04:00
#{n_('Commit', 'Commits', @project.statistics.commit_count)} (#{number_with_delimiter(@project.statistics.commit_count)})
2017-06-29 04:34:05 -04:00
%li
2017-06-29 13:06:35 -04:00
= link_to project_branches_path(@project) do
2017-06-07 16:13:44 -04:00
#{n_('Branch', 'Branches', @repository.branch_count)} (#{number_with_delimiter(@repository.branch_count)})
2017-02-21 14:35:08 -05:00
%li
2017-06-29 13:06:35 -04:00
= link_to project_tags_path(@project) do
2017-06-07 16:13:44 -04:00
#{n_('Tag', 'Tags', @repository.tag_count)} (#{number_with_delimiter(@repository.tag_count)})
2016-09-16 15:15:39 -04:00
2017-09-07 10:18:25 -04:00
- if @repository.readme
2017-02-21 14:35:08 -05:00
%li
2017-09-07 10:18:25 -04:00
= link_to _('Readme'),
default_project_view != 'readme' ? readme_path(@project) : '#readme'
2017-02-17 09:57:41 -05:00
2017-02-21 14:35:08 -05:00
- if @repository.changelog
%li
2017-06-07 16:13:44 -04:00
= link_to _('Changelog'), changelog_path(@project)
2017-02-17 09:57:41 -05:00
2017-02-21 14:35:08 -05:00
- if @repository.license_blob
%li
= link_to license_short_name(@project), license_path(@project)
2017-02-17 09:57:41 -05:00
2017-02-21 14:35:08 -05:00
- if @repository.contribution_guide
%li
2017-06-07 16:13:44 -04:00
= link_to _('Contribution guide'), contribution_guide_path(@project)
2017-02-17 09:57:41 -05:00
2017-02-21 14:35:08 -05:00
- if @repository.gitlab_ci_yml
%li
2017-06-07 16:13:44 -04:00
= link_to _('CI configuration'), ci_configuration_path(@project)
2016-09-16 15:15:39 -04:00
2017-02-21 14:35:08 -05: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
2017-06-07 16:13:44 -04:00
#{ _('Add Changelog') }
2017-02-21 14:35:08 -05:00
- unless @repository.license_blob
%li.missing
= link_to add_special_file_path(@project, file_name: 'LICENSE') do
2017-06-07 16:13:44 -04:00
#{ _('Add License') }
2017-02-21 14:35:08 -05:00
- unless @repository.contribution_guide
%li.missing
= link_to add_special_file_path(@project, file_name: 'CONTRIBUTING.md', commit_message: 'Add contribution guide') do
2017-06-07 16:13:44 -04:00
#{ _('Add Contribution guide') }
2017-02-21 14:35:08 -05:00
- unless @repository.gitlab_ci_yml
%li.missing
= link_to add_special_file_path(@project, file_name: '.gitlab-ci.yml') do
2017-06-07 16:13:44 -04:00
#{ _('Set up CI') }
2017-02-21 14:35:08 -05:00
- if koding_enabled? && @repository.koding_yml.blank?
%li.missing
2017-06-07 16:13:44 -04:00
= link_to _('Set up Koding'), add_koding_stack_path(@project)
2017-11-27 08:35:16 -05:00
- if @repository.gitlab_ci_yml.blank? && @project.deployment_platform.present?
2017-02-21 14:35:08 -05:00
%li.missing
2017-04-19 20:37:44 -04:00
= link_to add_special_file_path(@project, file_name: '.gitlab-ci.yml', commit_message: 'Set up auto deploy', branch_name: 'auto-deploy', context: 'autodeploy') do
2017-06-07 16:13:44 -04:00
#{ _('Set up auto deploy') }
2016-09-16 15:15:39 -04:00
2017-07-03 05:14:40 -04:00
%div{ class: [container_class, ("limit-container-width" unless fluid_layout)] }
2016-01-13 08:37:25 -05:00
- if @project.archived?
.text-warning.center.prepend-top-20
%p
= icon("exclamation-triangle fw")
2017-06-07 16:13:44 -04:00
#{ _('Archived project! Repository is read-only') }
2015-10-15 13:02:29 -04:00
2016-09-16 15:15:39 -04:00
- view_path = default_project_view
2017-09-05 07:35:31 -04:00
- if show_auto_devops_callout?(@project)
2017-09-01 08:32:05 -04:00
= render 'shared/auto_devops_callout'
2017-09-01 07:18:00 -04:00
2016-09-16 15:15:39 -04:00
%div{ class: project_child_container_class(view_path) }
= render view_path