gitlab-org--gitlab-foss/app/views/shared/_clone_panel.html.haml

23 lines
1 KiB
Text
Raw Normal View History

- project = project || @project
2015-12-18 17:12:47 -05:00
2018-09-06 03:27:39 -04:00
.git-clone-holder.js-git-clone-holder.input-group
.input-group-prepend
- if allowed_protocols_present?
.input-group-text.clone-dropdown-btn.btn
2018-09-06 03:27:39 -04:00
%span.js-clone-dropdown-label
= enabled_project_button(project, enabled_protocol)
- else
%a#clone-dropdown.input-group-text.btn.clone-dropdown-btn.qa-clone-dropdown{ href: '#', data: { toggle: 'dropdown' } }
2018-09-06 03:27:39 -04:00
%span.js-clone-dropdown-label
= default_clone_protocol.upcase
= icon('caret-down')
%ul.dropdown-menu.dropdown-menu-selectable.clone-options-dropdown
%li
= ssh_clone_button(project)
%li
= http_clone_button(project)
2015-12-18 17:12:47 -05:00
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true, aria: { label: 'Project clone URL' }
.input-group-append
2018-05-10 15:22:56 -04:00
= clipboard_button(target: '#project_clone', title: _("Copy URL to clipboard"), class: "input-group-text btn-default btn-clipboard")