BigW Consortium Gitlab

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

3 4
= content_for :meta_tags do
  - if current_user
5
    = auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, format: :atom, private_token: current_user.private_token), title: "#{@project.name} activity")
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

15
.project-stats.gray-content-block.second-block
16
  %ul.nav
17
    %li
18
      = link_to namespace_project_commits_path(@project.namespace, @project, current_ref) do
19
        = pluralize(number_with_delimiter(@project.commit_count), 'commit')
20 21 22 23 24 25
    %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')
26

27
    %li
28
      = link_to project_files_path(@project) do
29 30
        = repository_size

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

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

39 40
    - if @repository.license
      %li
41 42
        = link_to 'License', license_path(@project)

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

47 48 49 50 51 52 53 54 55 56 57 58 59 60
    - 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

61 62
- if @repository.commit
  .content-block.second-block.white
63 64 65 66 67 68 69 70 71
    %div{ class: container_class }
      = render 'projects/last_commit', commit: @repository.commit, project: @project

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

73 74
  %div{class: "project-show-#{default_project_view}"}
    = render default_project_view