debian-mirror-gitlab/app/views/shared/_file_picker_button.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
464 B
Text
Raw Normal View History

2021-02-22 17:27:13 +05:30
- classes = local_assigns.fetch(:classes, '')
2023-06-20 00:43:36 +05:30
- mime_types = local_assigns.fetch(:mime_types, '')
2021-02-22 17:27:13 +05:30
2020-06-23 00:09:42 +05:30
%span.js-filepicker
2023-01-13 00:05:48 +05:30
= render Pajamas::ButtonComponent.new(button_options: { class: "js-filepicker-button #{classes}" }) do
= _("Choose file…")
2023-06-20 00:43:36 +05:30
%span.file_name.gl-ml-3.js-filepicker-filename= _("No file chosen.")
= f.file_field field, class: "js-filepicker-input hidden", accept: mime_types
2020-06-23 00:09:42 +05:30
- if help_text.present?
.form-text.text-muted= help_text