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

new.html.haml « imports « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 778ff91362d47bba5d5a6a04c48e63c039a3e654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- page_title "Import repository"
%h3.page-title
  Import repository

%hr

- if @project.import_failed?
  .panel.panel-danger
    .panel-heading The repository could not be imported.
    .panel-body
      %pre
        :preserve
          #{h(sanitize_repo_path(@project, @project.import_error))}

= form_for @project, url: project_import_path(@project), method: :post, html: { class: 'form-horizontal' } do |f|
  = render "shared/import_form", f: f

  .form-actions
    = f.submit 'Start import', class: "btn btn-create", tabindex: 4