mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 14:46:05 +10:00
Now it will work on any field inside that form, and it's easier to scope new behavior, which is what we're adding next!
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
#modal-create-new-dir.modal
|
||
.modal-dialog
|
||
.modal-content
|
||
.modal-header
|
||
%a.close{href: "#", "data-dismiss" => "modal"} ×
|
||
%h3.page-title Create New Directory
|
||
.modal-body
|
||
= form_tag namespace_project_create_dir_path(@project.namespace, @project, @id), method: :post, remote: false, class: 'form-horizontal js-create-dir-form js-quick-submit js-requires-input' do
|
||
.form-group
|
||
= label_tag :dir_name, 'Directory name', class: 'control-label'
|
||
.col-sm-10
|
||
= text_field_tag :dir_name, params[:dir_name], required: true, class: 'form-control'
|
||
|
||
= render 'shared/new_commit_form', placeholder: "Add new directory"
|
||
|
||
.form-actions
|
||
= submit_tag "Create directory", class: 'btn btn-create'
|
||
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"
|
||
|
||
- unless can?(current_user, :push_code, @project)
|
||
.inline.prepend-left-10
|
||
= commit_in_fork_help
|
||
|
||
:javascript
|
||
new NewCommitForm($('.js-create-dir-form'))
|