2015-10-24 18:46:33 +05:30
|
|
|
#modal-create-new-dir.modal
|
2018-03-17 18:26:18 +05:30
|
|
|
.modal-dialog.modal-lg
|
2015-10-24 18:46:33 +05:30
|
|
|
.modal-content
|
|
|
|
.modal-header
|
2022-07-23 23:45:48 +05:30
|
|
|
%h1.page-title.gl-font-size-h-display= _('Create New Directory')
|
2018-11-08 19:23:39 +05:30
|
|
|
%button.close{ type: "button", "data-dismiss": "modal", "aria-label" => _('Close') }
|
2021-09-04 01:27:46 +05:30
|
|
|
%span{ "aria-hidden": "true" } ×
|
2015-10-24 18:46:33 +05:30
|
|
|
.modal-body
|
2018-11-08 19:23:39 +05:30
|
|
|
= form_tag project_create_dir_path(@project, @id), method: :post, remote: false, class: 'js-create-dir-form js-quick-submit js-requires-input' do
|
|
|
|
.form-group.row
|
|
|
|
= label_tag :dir_name, _('Directory name'), class: 'col-form-label col-sm-2'
|
2015-10-24 18:46:33 +05:30
|
|
|
.col-sm-10
|
2015-12-23 02:04:40 +05:30
|
|
|
= text_field_tag :dir_name, params[:dir_name], required: true, class: 'form-control'
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
= render 'shared/new_commit_form', placeholder: _("Add new directory")
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
.form-actions
|
2021-04-29 21:17:54 +05:30
|
|
|
= submit_tag _("Create directory"), class: 'btn gl-button btn-confirm'
|
2021-11-11 11:23:49 +05:30
|
|
|
= link_to _('Cancel'), '#', class: "btn gl-button btn-default btn-cancel", "data-dismiss" => "modal"
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
= render 'shared/projects/edit_information'
|