Commit 64c13230 authored by Martin Wortschack's avatar Martin Wortschack Committed by Phil Hughes

(Port from CE) create project: hide readme checkbox on all tabs except for "blank project" page

parent 4030ebb8
...@@ -63,4 +63,4 @@ ...@@ -63,4 +63,4 @@
= form_for @project, html: { class: 'new_project' } do |f| = form_for @project, html: { class: 'new_project' } do |f|
%hr %hr
= render "shared/import_form", f: f = render "shared/import_form", f: f
= render 'new_project_fields', f: f, project_name_id: "import-url-name" = render 'new_project_fields', f: f, project_name_id: "import-url-name", hide_init_with_readme: true
- visibility_level = params.dig(:project, :visibility_level) || default_project_visibility - visibility_level = params.dig(:project, :visibility_level) || default_project_visibility
- ci_cd_only = local_assigns.fetch(:ci_cd_only, false) - ci_cd_only = local_assigns.fetch(:ci_cd_only, false)
- hide_init_with_readme = local_assigns.fetch(:hide_init_with_readme, false)
.row{ id: project_name_id } .row{ id: project_name_id }
= f.hidden_field :ci_cd_only, value: ci_cd_only = f.hidden_field :ci_cd_only, value: ci_cd_only
...@@ -48,15 +49,16 @@ ...@@ -48,15 +49,16 @@
= link_to icon('question-circle'), help_page_path("public_access/public_access"), aria: { label: 'Documentation for Visibility Level' }, target: '_blank', rel: 'noopener noreferrer' = link_to icon('question-circle'), help_page_path("public_access/public_access"), aria: { label: 'Documentation for Visibility Level' }, target: '_blank', rel: 'noopener noreferrer'
= render 'shared/visibility_level', f: f, visibility_level: visibility_level.to_i, can_change_visibility_level: true, form_model: @project, with_label: false = render 'shared/visibility_level', f: f, visibility_level: visibility_level.to_i, can_change_visibility_level: true, form_model: @project, with_label: false
.form-group.row.initialize-with-readme-setting - if !hide_init_with_readme
%div{ :class => "col-sm-12" } .form-group.row.initialize-with-readme-setting
.form-check %div{ :class => "col-sm-12" }
= check_box_tag 'project[initialize_with_readme]', '1', false, class: 'form-check-input' .form-check
= label_tag 'project[initialize_with_readme]', class: 'form-check-label' do = check_box_tag 'project[initialize_with_readme]', '1', false, class: 'form-check-input'
.option-title = label_tag 'project[initialize_with_readme]', class: 'form-check-label' do
%strong Initialize repository with a README .option-title
.option-description %strong Initialize repository with a README
Allows you to immediately clone this project’s repository. Skip this if you plan to push up an existing repository. .option-description
Allows you to immediately clone this project’s repository. Skip this if you plan to push up an existing repository.
= f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4 = f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4
= link_to 'Cancel', dashboard_projects_path, class: 'btn btn-cancel' = link_to 'Cancel', dashboard_projects_path, class: 'btn btn-cancel'
...@@ -28,4 +28,4 @@ ...@@ -28,4 +28,4 @@
.js-toggle-content.toggle-import-form{ class: ('hide' if active_tab != 'ci_cd_only') } .js-toggle-content.toggle-import-form{ class: ('hide' if active_tab != 'ci_cd_only') }
%hr %hr
= render "shared/import_form", f: f, ci_cd_only: true = render "shared/import_form", f: f, ci_cd_only: true
= render 'new_project_fields', f: f, project_name_id: "import-url-name", ci_cd_only: true = render 'new_project_fields', f: f, project_name_id: "import-url-name", ci_cd_only: true, hide_init_with_readme: true
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
.project-fields-form .project-fields-form
= render 'projects/project_templates/project_fields_form' = render 'projects/project_templates/project_fields_form'
= f.hidden_field(:use_custom_template, value: false) = f.hidden_field(:use_custom_template, value: false)
= render 'projects/new_project_fields', f: f, project_name_id: "template-project-name" = render 'projects/new_project_fields', f: f, project_name_id: "template-project-name", hide_init_with_readme: true
- else - else
= render_ce 'projects/project_templates', f: f = render_ce 'projects/project_templates', f: f
---
title: remove readme checkbox from "create project" page
merge_request: 7332
author:
type: other
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment