debian-mirror-gitlab/app/views/shared/_import_form.html.haml

21 lines
876 B
Text
Raw Normal View History

2018-03-27 19:54:05 +05:30
- ci_cd_only = local_assigns.fetch(:ci_cd_only, false)
2015-11-26 14:37:03 +05:30
.form-group.import-url-data
2018-11-18 11:00:15 +05:30
= f.label :import_url, class: 'label-bold' do
2018-03-27 19:54:05 +05:30
%span
= _('Git repository URL')
2015-11-26 14:37:03 +05:30
2018-03-27 19:54:05 +05:30
= f.text_field :import_url, autocomplete: 'off', class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git', required: true
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
.info-well.prepend-top-20
.well-segment
%ul
%li
= _('The repository must be accessible over <code>http://</code>, <code>https://</code> or <code>git://</code>.').html_safe
%li
= _('If your HTTP repository is not publicly accessible, add authentication information to the URL: <code>https://username:password@gitlab.company.com/group/project.git</code>.').html_safe
%li
= import_will_timeout_message(ci_cd_only)
%li
= import_svn_message(ci_cd_only)