debian-mirror-gitlab/app/views/projects/show.html.haml

91 lines
3.6 KiB
Text
Raw Normal View History

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