show.html.haml 2.9 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
= render 'projects/last_push'
10
= render "home_panel"
11

D
Dmitriy Zaporozhets 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
.project-stats
  %ul.nav.nav-pills
    %li
      = link_to namespace_project_commits_path(@project.namespace, @project, @ref || @repository.root_ref) do
        = pluralize(number_with_delimiter(@repository.commit_count), 'commit')
    %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')
    - if @repository.changelog
      %li
        = link_to changelog_url(@project) do
          Changelog
    - if @repository.license
      %li
        = link_to license_url(@project) do
          License
    - if @repository.contribution_guide
      %li
        = link_to contribution_guide_url(@project) do
          Contribution guide
35

36 37 38 39 40 41
- if @project.archived?
  .text-warning.center.prepend-top-20
    %p
      = icon("exclamation-triangle fw")
      Archived project! Repository is read-only

D
Dmitriy Zaporozhets 已提交
42 43 44 45 46
%hr
%section
  - if readme = @repository.readme
    %article.readme-holder#README
      .clearfix
47 48 49 50 51
        .pull-right
           
          - if can?(current_user, :push_code, @project)
            = link_to namespace_project_edit_blob_path(@project.namespace, @project, tree_join(@repository.root_ref, readme.name)), class: 'light' do
              %i.fa.fa-pencil
D
Dmitriy Zaporozhets 已提交
52
      .wiki
53 54
        = cache(readme_cache_key) do
          = render_readme(readme)
D
Dmitriy Zaporozhets 已提交
55
  - else
56
    %h3.page-title
57
      This project does not have README yet
58 59 60 61 62 63 64 65 66 67 68
    - if can?(current_user, :push_code, @project)
      %p.slead
        A
        %code README
        file contains information about other files in a repository and is commonly
        distributed with computer software, forming part of its documentation.
        %br
        We recommend you to
        = link_to "add README", new_readme_path, class: 'underlined-link'
        file to the repository and GitLab will render it here instead of this message.

69 70 71 72 73 74 75 76 77 78 79 80


- if current_user
  - access = user_max_access_in_project(current_user, @project)
  - if access
    %hr
    %p.light
      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