show.html.haml 2.8 KB
Newer Older
D
Douwe Maan 已提交
1 2
= content_for :meta_tags do
  - if current_user
D
Douwe Maan 已提交
3
    = 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 已提交
4

5
- if current_user && can?(current_user, :download_code, @project)
6
  = render 'shared/no_ssh'
7
  = render 'shared/no_password'
8

9 10 11
- if prefer_readme?
  = render 'projects/last_push'

12
= render "home_panel"
13

D
Dmitriy Zaporozhets 已提交
14
.project-stats.gray-content-block
D
Dmitriy Zaporozhets 已提交
15 16 17
  %ul.nav.nav-pills
    %li
      = link_to namespace_project_commits_path(@project.namespace, @project, @ref || @repository.root_ref) do
18
        = pluralize(number_with_delimiter(@project.commit_count), 'commit')
D
Dmitriy Zaporozhets 已提交
19 20 21 22 23 24
    %li
      = link_to namespace_project_branches_path(@project.namespace, @project) do
        = pluralize(number_with_delimiter(@repository.branch_names.count), 'branch')
    %li
      = link_to namespace_project_tags_path(@project.namespace, @project) do
        = pluralize(number_with_delimiter(@repository.tag_names.count), 'tag')
25

26 27 28 29
    %li
      = link_to namespace_project_path(@project.namespace, @project) do
        = repository_size

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

D
Dmitriy Zaporozhets 已提交
34 35
    - if @repository.changelog
      %li
36 37
        = link_to 'Changelog', changelog_path(@project)

D
Dmitriy Zaporozhets 已提交
38 39
    - if @repository.license
      %li
40 41
        = link_to 'License', license_path(@project)

D
Dmitriy Zaporozhets 已提交
42 43
    - if @repository.contribution_guide
      %li
44
        = link_to 'Contribution guide', contribution_guide_path(@project)
45

46 47 48 49 50 51 52 53 54 55 56 57 58 59
    - if current_user && can_push_branch?(@project, @project.default_branch)
      - unless @repository.changelog
        %li.missing
          = link_to add_changelog_path(@project) do
            Add Changelog
      - unless @repository.license
        %li.missing
          = link_to add_license_path(@project) do
            Add License
      - unless @repository.contribution_guide
        %li.missing
          = link_to add_contribution_guide_path(@project) do
            Add Contribution guide

60 61 62 63 64 65
- if @project.archived?
  .text-warning.center.prepend-top-20
    %p
      = icon("exclamation-triangle fw")
      Archived project! Repository is read-only

D
Dmitriy Zaporozhets 已提交
66
%section
67
  - if prefer_readme?
68 69
    .project-show-readme
      = render 'projects/readme'
D
Dmitriy Zaporozhets 已提交
70
  - else
71 72
    .project-show-activity
      = render 'projects/activity'
73 74 75 76 77


- if current_user
  - access = user_max_access_in_project(current_user, @project)
  - if access
D
Dmitriy Zaporozhets 已提交
78 79 80 81 82 83 84
    .prepend-top-20
      .gray-content-block.footer-block.center
        You have #{access} access to this project.
        - if @project.project_member_by_id(current_user)
          = link_to leave_namespace_project_project_members_path(@project.namespace, @project),
            data: { confirm: leave_project_message(@project) }, method: :delete, title: 'Leave project', class: 'cred' do
            Leave this project