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

D
Douwe Maan 已提交
3 4
= content_for :meta_tags do
  - if current_user
D
Douwe Maan 已提交
5
    = auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, format: :atom, private_token: current_user.private_token), title: "#{@project.name} activity")
D
Douwe Maan 已提交
6

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

12
= render 'projects/last_push'
13
= render "home_panel"
14

P
Phil Hughes 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
%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
D
Dmitriy Zaporozhets 已提交
31
      %li
P
Phil Hughes 已提交
32
        = link_to 'Readme', readme_path(@project)
A
Annabel Dunstone 已提交
33

P
Phil Hughes 已提交
34 35 36
    - if @repository.changelog
      %li
        = link_to 'Changelog', changelog_path(@project)
A
Annabel Dunstone 已提交
37

P
Phil Hughes 已提交
38 39 40
    - if @repository.license_blob
      %li
        = link_to license_short_name(@project), license_path(@project)
A
Annabel Dunstone 已提交
41

P
Phil Hughes 已提交
42 43 44
    - if @repository.contribution_guide
      %li
        = link_to 'Contribution guide', contribution_guide_path(@project)
A
Annabel Dunstone 已提交
45

P
Phil Hughes 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    - 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
P
Phil Hughes 已提交
63
    %li.project-repo-buttons-right
P
Phil Hughes 已提交
64 65 66
      .project-repo-buttons.project-right-buttons
        - if current_user
          = render 'shared/members/access_request_buttons', source: @project
67

P
Phil Hughes 已提交
68 69 70
        .btn-group.project-repo-btn-group
          = render "projects/buttons/download"
          = render 'projects/buttons/dropdown'
71

P
Phil Hughes 已提交
72
        = render 'shared/notifications/button', notification_setting: @notification_setting
73
- if @repository.commit
P
Phil Hughes 已提交
74 75
  .project-last-commit{ class: container_class }
    = render 'projects/last_commit', commit: @repository.commit, project: @project
76 77 78 79 80 81 82

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

84 85
  %div{class: "project-show-#{default_project_view}"}
    = render default_project_view