9a05850d4d
Conflicts: app/views/projects/pipeline_schedules/_form.html.haml
30 lines
1.3 KiB
Text
30 lines
1.3 KiB
Text
#modal-upload-blob.modal
|
||
.modal-dialog
|
||
.modal-content
|
||
.modal-header
|
||
%a.close{ href: "#", "data-dismiss" => "modal" } ×
|
||
%h3.page-title= title
|
||
.modal-body
|
||
= form_tag form_path, method: method, class: 'js-quick-submit js-upload-blob-form form-horizontal', data: { method: method } do
|
||
.dropzone
|
||
.dropzone-previews.blob-upload-dropzone-previews
|
||
%p.dz-message.light
|
||
- upload_link = link_to s_('UploadLink|click to upload'), '#', class: "markdown-selector"
|
||
- dropzone_text = _('Attach a file by drag & drop or %{upload_link}') % { upload_link: upload_link }
|
||
#{ dropzone_text.html_safe }
|
||
|
||
%br
|
||
.dropzone-alerts.alert.alert-danger.data{ style: "display:none" }
|
||
|
||
= render 'shared/new_commit_form', placeholder: placeholder
|
||
|
||
.form-actions
|
||
= button_tag button_title, class: 'btn btn-small btn-create btn-upload-file', id: 'submit-all'
|
||
= 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
|
||
|
||
- content_for :page_specific_javascripts do
|
||
= page_specific_javascript_bundle_tag('blob')
|