BigW Consortium Gitlab

_aside.html.haml 4.31 KB
Newer Older
1
.clearfix
2
  - unless @project.empty_repo?
3 4
    .panel.panel-default
      .panel-heading
5 6
        = visibility_level_icon(@project.visibility_level)
        = "#{visibility_level_label(@project.visibility_level).capitalize} project"
7

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
      .panel-body
        - if @repository.changelog || @repository.license || @repository.contribution_guide
          %ul.nav.nav-pills
            - if @repository.changelog
              %li.hidden-xs
                = 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
23

24 25 26 27 28
        .actions
          - if can? current_user, :write_issue, @project
            = link_to url_for_new_issue(@project, only_path: true), title: "New Issue", class: 'btn btn-sm append-right-10' do
              = icon("exclamation-circle fw")
              New Issue
29

30 31 32 33
          - if can? current_user, :write_merge_request, @project
            = link_to new_namespace_project_merge_request_path(@project.namespace, @project), class: "btn btn-sm", title: "New Merge Request" do
              = icon("plus fw")
              New Merge Request
34

35 36 37 38 39 40
      - if forked_from_project = @project.forked_from_project
        .panel-footer
          = icon("code-fork fw")
          Forked from
          .pull-right
            = link_to forked_from_project.namespace.try(:name), project_path(forked_from_project)
41

42

43 44 45 46 47 48 49 50 51 52 53 54
      - @project.ci_services.each do |ci_service|
        - if ci_service.active? && ci_service.respond_to?(:builds_path)
          .panel-footer
            = icon("check fw")
            = ci_service.title
            .pull-right
              - if ci_service.respond_to?(:status_img_path)
                = link_to ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink' do
                  = image_tag ci_service.status_img_path, alt: "build status", class: 'ci-status-image'
              - else
                = link_to 'view builds', ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink'

55

56
  - unless @project.empty_repo?
57 58
    .panel.panel-default
      .panel-heading
59
        = icon("folder-o fw")
60
        Repository
61 62 63 64 65 66 67 68 69 70 71
      .panel-body
        %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')
72

73 74 75 76
        .actions
          = link_to namespace_project_compare_index_path(@project.namespace, @project, from: @repository.root_ref, to: @ref || @repository.root_ref), class: 'btn btn-sm append-right-10' do
            %i.fa.fa-exchange
            Compare code
77

78 79 80 81 82 83 84 85 86
          - if can?(current_user, :download_code, @project)
            = render 'projects/repositories/download_archive', split_button: true, btn_class: 'btn-group-sm'
      - if version = @repository.version
        .panel-footer
          = icon("clock-o fw")
          Version
          .pull-right
            = link_to version_url(@project) do
              = @repository.blob_by_oid(version.id).data
87

88 89
    = render "shared/clone_panel"

90
  - if @project.archived?
91
    %br
92 93 94 95 96
    .alert.alert-warning
      %h4
        = icon("exclamation-triangle fw")
        Archived project!
      %p Repository is read-only
97 98 99 100 101 102 103 104 105 106 107 108

  - if current_user
    - access = user_max_access_in_project(current_user, @project)
    - if access
      .light-well.light.prepend-top-20
        %small
          You have #{access} access to this project.
          - if @project.project_member_by_id(current_user)
            %br
            = link_to leave_namespace_project_project_members_path(@project.namespace, @project),
              data: { confirm: leave_project_message(@project) }, method: :delete, title: 'Leave project' do
              Leave this project