debian-mirror-gitlab/app/views/import/gitlab_projects/new.html.haml

25 lines
899 B
Text
Raw Normal View History

2018-11-18 11:00:15 +05:30
- page_title _("GitLab Import")
- header_title _("Projects"), root_path
2017-09-10 17:25:29 +05:30
2016-06-22 15:30:34 +05:30
%h3.page-title
= icon('gitlab')
2018-11-18 11:00:15 +05:30
= _('Import an exported GitLab project')
2016-06-22 15:30:34 +05:30
%hr
2017-09-10 17:25:29 +05:30
= form_tag import_gitlab_project_path, class: 'new_project', multipart: true do
2019-09-04 21:01:54 +05:30
= render 'import/shared/new_project_form'
2016-06-22 15:30:34 +05:30
2017-09-10 17:25:29 +05:30
.row
.form-group.col-md-12
2018-11-18 11:00:15 +05:30
= _("To move or copy an entire GitLab project from another GitLab installation to this one, navigate to the original project's settings page, generate an export file, and upload it here.")
2017-09-10 17:25:29 +05:30
.row
.form-group.col-sm-12
= hidden_field_tag :namespace_id, @namespace.id
2018-11-18 11:00:15 +05:30
= label_tag :file, _('GitLab project export'), class: 'label-bold'
2017-09-10 17:25:29 +05:30
.form-group
= file_field_tag :file, class: ''
.row
2018-11-08 19:23:39 +05:30
.form-actions.col-sm-12
2018-12-05 23:21:45 +05:30
= submit_tag _('Import project'), class: 'btn btn-success'
2018-11-18 11:00:15 +05:30
= link_to _('Cancel'), new_project_path, class: 'btn btn-cancel'