BigW Consortium Gitlab

show.html.haml 3.46 KB
Newer Older
1 2
- @no_container = true

3
= content_for :meta_tags do
4
  = auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, rss_url_options), title: "#{@project.name} activity")
5

6 7 8 9
= content_for :flash_message do
  - if current_user && can?(current_user, :download_code, @project)
    = render 'shared/no_ssh'
    = render 'shared/no_password'
10

11 12
= render "projects/head"
= render "projects/last_push"
13
= render "home_panel"
14

15
- if can?(current_user, :download_code, @project)
16
  %nav.project-stats{ class: container_class }
17 18 19 20 21 22 23 24 25 26 27 28 29
    %ul.nav
      %li
        = link_to project_files_path(@project) do
          Files (#{storage_counter(@project.statistics.total_repository_size)})
      %li
        = link_to namespace_project_commits_path(@project.namespace, @project, current_ref) do
          #{'Commit'.pluralize(@project.statistics.commit_count)} (#{number_with_delimiter(@project.statistics.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)})
30

31 32 33
      - if default_project_view != 'readme' && @repository.readme
        %li
          = link_to 'Readme', readme_path(@project)
34

35 36 37
      - if @repository.changelog
        %li
          = link_to 'Changelog', changelog_path(@project)
38

39 40 41
      - if @repository.license_blob
        %li
          = link_to license_short_name(@project), license_path(@project)
42

43 44 45
      - if @repository.contribution_guide
        %li
          = link_to 'Contribution guide', contribution_guide_path(@project)
46

47 48 49
      - if @repository.gitlab_ci_yml
        %li
          = link_to 'CI configuration', ci_configuration_path(@project)
50

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
      - 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
        - if koding_enabled? && @repository.koding_yml.blank?
          %li.missing
            = link_to 'Set up Koding', add_koding_stack_path(@project)
        - if @repository.gitlab_ci_yml.blank? && @project.deployment_service.present?
          %li.missing
73
            = 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
74
              Set up auto deploy
75

76
%div{ class: container_class }
77 78 79 80 81
  - if @project.archived?
    .text-warning.center.prepend-top-20
      %p
        = icon("exclamation-triangle fw")
        Archived project! Repository is read-only
82

83 84 85 86
  - view_path = default_project_view

  %div{ class: project_child_container_class(view_path) }
    = render view_path