summaryrefslogtreecommitdiff
path: root/app/views/projects/buttons/_clone.html.haml
blob: d82a3dd70f932fe2a29d8c2f19c9d6243095fd48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
- project = project || @project

.git-clone-holder.js-git-clone-holder.input-group
  - if allowed_protocols_present?
    .input-group-text.clone-dropdown-btn.btn
      %span.js-clone-dropdown-label
        = enabled_project_button(project, enabled_protocol)
  - else
    %a#clone-dropdown.input-group-text.btn.btn-primary.btn-xs.clone-dropdown-btn.qa-clone-dropdown{ href: '#', data: { toggle: 'dropdown' } }
      %span.append-right-4.js-clone-dropdown-label
        = _('Clone')
      = sprite_icon("arrow-down", css_class: "icon")
    %form.p-3.dropdown-menu.dropdown-menu-right.dropdown-menu-large.dropdown-menu-selectable.clone-options-dropdown
      %li.pb-2
        %label.label-bold
          = _('Clone with SSH')
        .input-group
          = text_field_tag :ssh_project_clone, project.ssh_url_to_repo, class: "js-select-on-focus form-control", readonly: true, aria: { label: 'Project clone URL' }
          .input-group-append
            = clipboard_button(target: '#ssh_project_clone', title: _("Copy URL to clipboard"), class: "input-group-text btn-default btn-clipboard")
            = render_if_exists 'projects/buttons/geo'
      %li
        %label.label-bold
          = _('Clone with %{http_label}') % { http_label: gitlab_config.protocol.upcase }
        .input-group
          = text_field_tag :http_project_clone, project.http_url_to_repo, class: "js-select-on-focus form-control", readonly: true, aria: { label: 'Project clone URL' }
          .input-group-append
            = clipboard_button(target: '#http_project_clone', title: _("Copy URL to clipboard"), class: "input-group-text btn-default btn-clipboard")
            = render_if_exists 'projects/buttons/geo'

= render_if_exists 'shared/geo_info_modal', project: project