Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « gitlab_projects « import « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ba62c91e6ab12e2b7fa1019751df82745fa3674 (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
- page_title _("GitLab Import")
- header_title _("Projects"), root_path

%h3.page-title.d-flex
  .gl-display-flex.gl-align-items-center.gl-justify-content-center
    = sprite_icon('tanuki', css_class: 'gl-mr-2')
  = _('Import an exported GitLab project')
%hr

= form_tag import_gitlab_project_path, class: 'new_project', multipart: true do
  = render 'import/shared/new_project_form'

  .row
    .form-group.col-md-12
      = _("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.")
  .row
    .form-group.col-sm-12
      = label_tag :file, _('GitLab project export'), class: 'label-bold'
      .form-group
        = file_field_tag :file, class: ''
  .row
    .form-actions.col-sm-12
      = submit_tag _('Import project'), class: 'gl-button btn btn-confirm'
      = link_to _('Cancel'), new_project_path, class: 'gl-button btn btn-default btn-cancel'